mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-12-27 01:11:13 -06:00
55 lines
1.2 KiB
TypeScript
55 lines
1.2 KiB
TypeScript
import test from 'ava';
|
|
import { Application } from 'spectron';
|
|
|
|
import {
|
|
getDemoFilePath,
|
|
loadURL,
|
|
sleep,
|
|
startApplication,
|
|
stopApplication,
|
|
Timeouts,
|
|
} from './fixtures/spectron-setup';
|
|
|
|
let app;
|
|
|
|
test.before(async (t) => {
|
|
app = (await startApplication(true)) as Application;
|
|
t.true(app.isRunning());
|
|
});
|
|
|
|
test.after.always(async () => {
|
|
await stopApplication(app);
|
|
});
|
|
|
|
test('Verify is the application is running', async (t) => {
|
|
t.true(app.isRunning());
|
|
});
|
|
|
|
test('Verify notification window is created', async (t) => {
|
|
await loadURL(app, getDemoFilePath());
|
|
await app.client.waitUntilWindowLoaded(Timeouts.fiveSec);
|
|
await app.client.click('#notf');
|
|
|
|
await sleep(Timeouts.oneSec);
|
|
t.timeout(10000);
|
|
t.is(await app.client.getWindowCount(), 2);
|
|
await app.client.windowByIndex(1);
|
|
await app.client.click('.close');
|
|
|
|
await sleep(2000);
|
|
await app.client.windowByIndex(0);
|
|
});
|
|
|
|
test('Verify notification window is hidden', async (t) => {
|
|
await app.client.click('#notf');
|
|
|
|
await sleep(Timeouts.oneSec);
|
|
t.timeout(Timeouts.fiveSec);
|
|
await app.client.windowByIndex(1);
|
|
await app.client.click('.close');
|
|
|
|
await sleep(2000);
|
|
await app.client.windowByIndex(0);
|
|
t.is(await app.client.getWindowCount(), 2);
|
|
});
|