我在before
测试中遇到after
和Mocha
方法中的测试设置和清理问题。
我使用Chromeless进行e2e测试。为了更简单的实现,我通过导出my-chrome-launcher.js
函数将我的chrome启动器移动到一个单独的文件(比如async
):
var chromeLauncher = require('chrome-launcher');
module.exports = {
launchChrome: async function(headless) {
try {
var flags = ['--disable-gpu'];
if (headless) {
flags = ['--headless', '--disable-gpu'];
}
let chrome = await chromeLauncher.launch({
port: 9222,
chromeFlags: flags
});
console.log(`Chrome debugging running on port ${chrome.port} with pid ${chrome.pid}`);
return chrome;
} catch (ex) {
console.error(ex.messsage);
}
}
}
simple.js
const {
Chromeless
} = require('Chromeless')
var http = require('http');
var fs = require('fs');
var assert = require('assert');
const myChromeLauncher = require('./my-chrome-launcher.js');
describe('app', function() {
describe('Top Results', function() {
it('should return top results', async() => {
chrome = await myChromeLauncher.launchChrome(true);
chromeless = new Chromeless();
const links = await chromeless
.goto('https://www.google.com')
.type('chromeless', 'input[name="q"]')
.press(13)
.wait('#resultStats')
.evaluate(() => {
// this will be executed in headless chrome
const links = [].map.call(
document.querySelectorAll('.g h3 a'),
a => ({ title: a.innerText, href: a.href })
)
return links;
});
// Assert
assert.equal(links.length, 11);
await chromeless.end();
chrome.kill().catch(e => console.error(e));
});
});
});
以上测试效果很好但是当我想使用before
,beforeEach
,after
或afterEach
方法共享设置代码时,我会收到错误消息:< / p>
describe('app', function() {
describe('Top Results', function() {
var chrome;
var chromeless;
before(function() {
chrome = await myChromeLauncher.launchChrome(true);
chromeless = new Chromeless();
});
....
after(function() {
await chromeless.end();
chrome.kill().catch(e => console.error(e));
});
});
});
错误:
chrome = await myChromeLauncher.launchChrome(true);
^^^^^^^^^^^^^^^^
SyntaxError: Unexpected identifier
答案 0 :(得分:4)
您的before
处理程序也需要async
,即
before(async function() {
chrome = await myChromeLauncher.launchChrome(true);
chromeless = new Chromeless();
});
来自docs
await运算符用于等待Promise。它只能在异步函数中使用。