File size: 600 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import { test, expect } from '@playwright/test'
test.describe('readonly editor', () => {
test.beforeEach(async ({ page }) => {
await page.goto('http://localhost:3000/examples/read-only')
})
test('should not be editable', async ({ page }) => {
const slateEditor = '[data-slate-editor="true"]'
expect(
await page.locator(slateEditor).getAttribute('contentEditable')
).toBe('false')
expect(await page.locator(slateEditor).getAttribute('role')).toBe(null)
await page.locator(slateEditor).click()
await expect(page.locator(slateEditor)).not.toBeFocused()
})
})
|