mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-25 10:20:16 -06:00
992bc6649e
1. Moved spectron test to a different directory 2. Added a npm command to run spectron test separately
70 lines
1.9 KiB
JavaScript
70 lines
1.9 KiB
JavaScript
describe('Tests for Close', () => {
|
|
|
|
let originalTimeout = jasmine.DEFAULT_TIMEOUT_INTERVAL;
|
|
jasmine.DEFAULT_TIMEOUT_INTERVAL = 90000;
|
|
|
|
let app;
|
|
|
|
beforeAll((done) => {
|
|
const Application = require('./spectronSetup');
|
|
app = new Application({});
|
|
return app.startApplication().then((startedApp) => {
|
|
app = startedApp;
|
|
done();
|
|
}).catch((err) => {
|
|
expect(err).toBeNull();
|
|
});
|
|
});
|
|
|
|
afterAll((done) => {
|
|
if (app && app.isRunning()) {
|
|
jasmine.DEFAULT_TIMEOUT_INTERVAL = originalTimeout;
|
|
app.stop().then(() => {
|
|
done();
|
|
}).catch((err) => {
|
|
console.log(err);
|
|
done();
|
|
});
|
|
} else {
|
|
done();
|
|
}
|
|
});
|
|
|
|
it('should launch the app', (done) => {
|
|
return app.client.waitUntilWindowLoaded().then(() => {
|
|
return app.client.getWindowCount().then((count) => {
|
|
expect(count === 1).toBeTruthy();
|
|
done();
|
|
}).catch((err) => {
|
|
expect(err).toBeNull();
|
|
});
|
|
}).catch((err) => {
|
|
expect(err).toBeNull();
|
|
});
|
|
});
|
|
|
|
it('should check window count', () => {
|
|
return app.client.getWindowCount().then((count) => {
|
|
expect(count === 1).toBeTruthy();
|
|
}).catch((err) => {
|
|
expect(err).toBeNull();
|
|
});
|
|
});
|
|
|
|
it('should check browser window visibility', () => {
|
|
return app.browserWindow.isVisible().then((isVisible) => {
|
|
expect(isVisible).toBeTruthy();
|
|
}).catch((err) => {
|
|
expect(err).toBeNull();
|
|
});
|
|
});
|
|
|
|
it('should close the app', () => {
|
|
return app.stop();
|
|
});
|
|
|
|
it('should check whether the app is running', () => {
|
|
expect(app.isRunning()).toBe(false);
|
|
});
|
|
|
|
}); |