Skip to content

Instantly share code, notes, and snippets.

@el3um4s
Created October 29, 2021 14:25
Show Gist options
  • Save el3um4s/615c5a669d50aa1572d9cb733e13db71 to your computer and use it in GitHub Desktop.
Save el3um4s/615c5a669d50aa1572d9cb733e13db71 to your computer and use it in GitHub Desktop.
MEDIUM - Ho to Test Electron Apps - 08
test.describe("Check Man Page", async () => {
let electronApp: ElectronApplication;
let firstWindow: Page;
test.beforeAll(async () => {
electronApp = await electron.launch({ args: ["."] });
firstWindow = await electronApp.firstWindow();
});
// ...
test.afterAll(async () => {
await electronApp.close();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment