Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { test, expect } from '@playwright/test'
test.describe('Check-lists example', () => {
test.beforeEach(async ({ page }) => {
await page.goto('http://localhost:3000/examples/check-lists')
})
test('checks the bullet when clicked', async ({ page }) => {
const slateNodeElement = 'div[data-slate-node="element"]'
expect(await page.locator(slateNodeElement).nth(3).textContent()).toBe(
'Criss-cross!'
)
await expect(
page.locator(slateNodeElement).nth(3).locator('span').nth(1)
).toHaveCSS('text-decoration-line', 'line-through')
// Unchecking the checkboxes should un-cross the corresponding text.
await page
.locator(slateNodeElement)
.nth(3)
.locator('span')
.nth(0)
.locator('input')
.uncheck()
expect(await page.locator(slateNodeElement).nth(3).textContent()).toBe(
'Criss-cross!'
)
await expect(
page.locator(slateNodeElement).nth(3).locator('span').nth(1)
).toHaveCSS('text-decoration-line', 'none')
await expect(page.locator('p[data-slate-node="element"]')).toHaveCount(2)
})
})