You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
380 B
8 lines
380 B
import { test, expect, _electron as electron } from "@playwright/test"; |
|
|
|
test("homepage has title and links to intro page", async () => { |
|
const app = await electron.launch({ args: [".", "--no-sandbox"] }); |
|
const page = await app.firstWindow(); |
|
expect(await page.title()).toBe("Electron + Vite + React"); |
|
await page.screenshot({ path: "e2e/screenshots/example.png" }); |
|
});
|
|
|