SymphonyElectron/tests/spectron/spectronSetup.js
2017-07-06 17:06:16 +05:30

40 lines
892 B
JavaScript

const Application = require('spectron').Application;
const path = require('path');
class App {
constructor(options) {
this.options = options;
if (!this.options.path) {
this.options.path = App.getAppPath();
this.options.args = [path.join(__dirname, '..', '..', 'js/main.js')];
}
this.app = new Application(this.options);
}
startApplication() {
return this.app.start().then((app) => {
return app;
}).catch((err) => {
console.log(err);
});
}
static getAppPath() {
let electronPath = path.join(__dirname, '..', '..', 'node_modules', '.bin', 'electron');
if (process.platform === 'win32') {
electronPath += '.cmd';
}
return electronPath
}
static getTimeOut() {
return 90000
}
}
module.exports = App;