2024-11-20 08:29:29 -05:00
|
|
|
// 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.
|
|
|
|
|
2024-12-03 20:03:54 -05:00
|
|
|
import { test, expect } from './zoo-test'
|
2024-11-20 08:29:29 -05:00
|
|
|
|
2024-12-03 20:03:54 -05:00
|
|
|
test.describe('Open the application', () => {
|
|
|
|
test('see the project view', async ({ page, context }) => {
|
2024-11-20 08:29:29 -05:00
|
|
|
await expect(page.getByTestId('home-section')).toBeVisible()
|
|
|
|
})
|
|
|
|
})
|