我想在几周前写一些Spectron e2e测试,但令我惊讶的是,他们突然因为同一个原因而停止了工作。
根据错误消息,我正在处理被拒绝的Promises,但我无法弄清楚问题的来源。在我的测试用例结束时调用完成了同样的错误。
我正在运行以下命令来启动我的测试套装:mocha test/e2e
然后Mocha在ordner中运行我的测试之前执行此index.js以支持ES6 +功能
'use strict'
//index.js
// Set BABEL_ENV to use proper env config
process.env.BABEL_ENV = 'test'
// Enable use of ES6+ on required files
require('babel-register')({
ignore: /node_modules/
})
// Attach Chai APIs to global scope
const { expect, should, assert } = require('chai')
global.expect = expect
global.should = should
global.assert = assert
// Require all JS files in `./specs` for Mocha to consume
require('require-dir')('./specs')
之后它试图运行这个返回上述错误的小的Login.spec.js
import utils from '../utils'
import {Application} from "spectron";
import electron from "electron";
describe(' Login', function () {
this.timeout(11000);
it('login form exists', async function (done) {
this.app = new Application({
path: electron,
env: {"SPECTRON_RUNNING":true},
args: ['dist/electron/main.js'],
startTimeout: 10000,
waitTimeout: 10000
})
await this.app.start()
await this.app.client.windowByIndex(1);
done();
})
})