我刚刚安装了Protractor v2.0.0
。我试图将beforeAll
添加到测试中并出现错误
看一下堆栈跟踪,我看到 Jasmine 1.3.1是 Protractor 的子模块:
beforeAll
在 Jasmine 2.1中引入。我尝试npm i -g jasmine-before-all
无济于事。我如何才能使用此功能?
最佳答案
Protractor 默认仍在使用jasmine1
。您必须在配置中设置 Jasmine 版本
framework: 'jasmine2',
您可以在reference configuration file中找到更多信息。