这里的新手,尝试使用Chai验证logInButton = Entrar的文本。 该测试在视觉上运行并通过,但始终失败。
0通过(73ms) 1个失败
AssertionError: expected 'logInButton' to equal 'Entrar'
+ expected - actual
-logInButton
+Entrar
代码:
var assert = require('chai').assert
logInButton = 'Entrar'
assert.strictEqual('logInButton', 'Entrar');
err(function () {
assert.notStrictEqual('logInButton', Entrar);
}, "Expected 'logInButton' to equal 'Entrar'");
我在做什么错?
答案 0 :(得分:0)
我对node.js
不太熟悉,但是我认为您想要这样的东西:
assert.strictEqual(logInButton, 'Entrar');
使用:
assert.strictEqual('logInButton', 'Entrar');
您正在比较两个字符串-'logInButton'和'Entrar',这两个字符串不相等。