软件包版本:
"webdriverio": "^4.13.2",
"typescript": "^3.0.1",
"mocha": "^4.1.0",
"selenium-standalone": "^6.15.1",
文件夹设置:
src
test
auth
login.success.test.ts
login.fail.test.ts
_test_setup.ts
_test_setup.ts文件的示例:
before(function() {
console.log("Test Setup: (Before)")
return callServer()
.then(() => {
console.log("Test Setup: (Complete)")
})
})
wdio.conf.js中的规范
specs: ['./src/test/**/*.ts']
在测试之前,我无法使安装脚本运行。 wdio似乎不尊重任何before
块之外的describe
块(可能也是忽略.only
的相同原因)。有其他选择吗?