Dalekjs中的测试在Chrome中不起作用

时间:2016-04-07 12:27:57

标签: javascript node.js testing npm dalekjs

我尝试使用此代码测试是否在Dalekjs文档中,断言示例是更正但在Chrome中不起作用。它预计它会在Chrome中运行而不是在Firefox中运行!我做错了什么,或者只是一个老例子。 求救!

module.exports = {
'MDE does its thing': function (test) {
  test
    .open('http://dalekjs.com/guineapig/')
    .assert.dialogText().is.not('I am an prompt', 'Exterminate!')
  .screenshot('test.png')
  .done();

   }
 };

1 个答案:

答案 0 :(得分:0)

我认为字符串应该是'我是一个提示':

.assert.dialogText().is.not('I am a prompt', 'Exterminate!')