mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-22 08:57:00 -06:00
873badf389
* Spectron - Initial commit * Spectron - Only run unit tests on travis * Spectron - Update npm script to copy config and refactor * Spectron - Update readme * Spectron - update test cases * Spectron - Merge upstream Spectron * Spectron - Update spectron to 10.0.0 and fix issues * Spectron - rename travis file * Spectron - install linux specific dependency * Spectron - Fix indentation * Spectron - Fix indentation * Spectron - Remove unwanted script * fix typo
35 lines
881 B
TypeScript
35 lines
881 B
TypeScript
import test from 'ava';
|
|
import { Application } from 'spectron';
|
|
import { robotActions } from './fixtures/robot-actions';
|
|
|
|
import { startApplication, stopApplication } from './fixtures/spectron-setup';
|
|
|
|
let app;
|
|
|
|
test.before(async (t) => {
|
|
app = await startApplication() as Application;
|
|
t.true(app.isRunning());
|
|
});
|
|
|
|
test.after.always(async () => {
|
|
await stopApplication(app);
|
|
});
|
|
|
|
test('minimize: verify application minimize / maximize feature', async (t) => {
|
|
const win = app.browserWindow;
|
|
win.minimize();
|
|
t.true(await win.isMinimized());
|
|
|
|
win.restore();
|
|
t.true(await win.isVisible());
|
|
});
|
|
|
|
test('minimize: verify application to be minimized with keyboard accelerator', async (t) => {
|
|
const win = app.browserWindow;
|
|
robotActions.closeWindow();
|
|
t.false(await win.isVisible());
|
|
|
|
win.restore();
|
|
t.true(await win.isVisible());
|
|
});
|