我正在尝试对使用 AngularJS 编写的应用程序执行一些端到端测试。目前,我在 e2e.tests.js 中有以下测试设置:
describe('MyApp', function() {
beforeEach(function() {
browser().navigateTo('../index.html');
});
it('should be true', function() {
expect(true).toBe(true);
});
});
奇怪的是,这个基本测试失败了。测试本身运行。然而结果是:
203ms browser navigate to '../index.html'
5ms expect undefined toBe true
http://localhost:81/tests/e2e.tests.js:10:9
expected true but was undefined
考虑到“true”是硬编码的,我希望它能够通过这个测试。我不知道真实的不确定性如何。我错过了什么?