3
我正在用量角器和角2使用茉莉編寫E2E測試。角2(cli)量角器茉莉花期望不解決承諾
我想對量角器返回的元素的getText()
做一個簡單的期望。
it('should display correct hero title',() => {
expect(element(by.css('Hero-title')).getText()).toEqual('Foobar');
});
這導致類型的錯誤:
Argument of type '"Foobar"' is not assignable to parameter of type 'Expected<Promise<string>>'. [2345]
我知道我可以使用.then
,但我不想這樣做,因爲我將這些類型的期望的負載。
使用一個新的Angular CLI項目,這個按預期工作。我已經通過了所有配置,但找不到任何區別。