mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 13:21:35 +03:00
16 lines
468 B
TypeScript
16 lines
468 B
TypeScript
/** @file Test the "change password" modal. */
|
|
import * as test from '@playwright/test'
|
|
|
|
import * as actions from './actions'
|
|
|
|
test.test('create project from template', ({ page }) =>
|
|
actions
|
|
.mockAllAndLogin({ page })
|
|
.openStartModal()
|
|
.createProjectFromTemplate(0)
|
|
.do(async (thePage) => {
|
|
await test.expect(actions.locateEditor(thePage)).toBeAttached()
|
|
await test.expect(actions.locateSamples(page).first()).not.toBeVisible()
|
|
}),
|
|
)
|