16 lines
423 B
TypeScript
16 lines
423 B
TypeScript
![]() |
import { createProject } from '@e2e/playwright/test-utils'
|
||
|
import { test } from '@e2e/playwright/zoo-test'
|
||
|
|
||
|
test.describe('Stress test', () => {
|
||
|
test('Create project and load stress test', async ({
|
||
|
cmdBar,
|
||
|
scene,
|
||
|
page,
|
||
|
}, testInfo) => {
|
||
|
const projectName = 'stress-test-project'
|
||
|
// Create and load project
|
||
|
await createProject({ name: projectName, page })
|
||
|
await scene.settled(cmdBar)
|
||
|
})
|
||
|
})
|