我想在模块中编写所有测试并导入到主测试js文件中以便执行。怎么做到这一点?以下是我的代码段。
module.exports = (function(settings) {
settings.test_workers = false;
return settings;
})(require('./nightwatch.json'));
var testPage = (require('./test.js'));
var myTest;
module.exports = {
myTest = new testPage(browser)
myTest.Login(browser) -> Giving error on this line.
}
Test.js
module.exports = {
'Login' : function Login (browser) {
browser
.url('http://localhost:63916/Login/Login')
.useXpath()
.maximizeWindow()
.pause(3000)
}
为什么要出错?谢谢。