1234567891011121314151617181920212223 |
- 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()
- }
- }
|