24 lines
445 B
JavaScript
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()
|
||
|
}
|
||
|
}
|