如何使用webdriverIO运行安装脚本?

时间:2018-10-11 17:13:20

标签: javascript node.js selenium webdriver mocha

软件包版本:

"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的相同原因)。有其他选择吗?

0 个答案:

没有答案