写了一些测试并且所有内容都成功运行,但我的IDE(webstorm)突出显示describe
,expect
和it
并说“找不到名字”。我想保持每个人的清洁并摆脱这些,但不知道如何。
我们使用量角器和茉莉。
更多剧本:
import {HomePO} from './pageobjects/home'
import {browser } from 'protractor'
describe('Smoke test', function() {
it('should initialize', function() {
let width = 320;
let height = 568;
browser.driver.manage().window().setSize(width, height);
});
it('should open homepage', function() {
HomePO.get();
expect(HomePO.isCurrentPage()).toBe(true);
});
});
答案 0 :(得分:8)
我遇到了同样的问题并做了:
npm install @types/jasmine --save-dev
并解决了这个问题 - 无需从茉莉花中导入任何东西。