Corrected a fixme in file-tree.spec!

This commit is contained in:
49lf
2024-11-27 14:02:01 -05:00
parent b3cc43ae2f
commit ccfc592b62
2 changed files with 11 additions and 11 deletions

View File

@ -507,7 +507,7 @@ export async function getUtils(page: Page, test_?: typeof test) {
editorTextMatches: async (code: string) => {
const editor = page.locator(editorSelector)
return expect(editor).toHaveText(code, { useInnerText: true })
return expect.poll(() => editor.textContent()).toContain(code)
},
pasteCodeInEditor: async (code: string) => {
@ -533,7 +533,7 @@ export async function getUtils(page: Page, test_?: typeof test) {
page.getByRole('button', { name: 'Start Sketch' })
).not.toBeDisabled()
await page.getByTestId('create-file-button').click()
await page.getByTestId('file-rename-field').fill(name)
await page.getByTestId('tree-input-field').fill(name)
await page.keyboard.press('Enter')
})
},