1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2024-12-11 08:30:07 +01:00
Whalebird-desktop-client-ma.../test/e2e/utils.js
2018-03-07 22:28:48 +09:00

24 lines
445 B
JavaScript

import electron from 'electron'
import { Application } from 'spectron'
export default {
afterEach () {
this.timeout(10000)
if (this.app && this.app.isRunning()) {
return this.app.stop()
}
},
beforeEach () {
this.timeout(10000)
this.app = new Application({
path: electron,
args: ['dist/electron/main.js'],
startTimeout: 10000,
waitTimeout: 10000
})
return this.app.start()
}
}