13 lines
479 B
TypeScript
13 lines
479 B
TypeScript
![]() |
// These tests are meant to simply test starting and stopping the electron
|
||
|
// application, check it can make it to the project pane, and nothing more.
|
||
|
// It also tests our test wrappers are working.
|
||
|
// Additionally this serves as a nice minimal example.
|
||
|
|
||
|
import { test, expect } from './zoo-test'
|
||
|
|
||
|
test.describe('Open the application', () => {
|
||
|
test('see the project view', async ({ page, context }) => {
|
||
|
await expect(page.getByTestId('home-section')).toBeVisible()
|
||
|
})
|
||
|
})
|