試圖運行ng2-bootstrap的e2e測試並遇到一些問題。有興趣,如果這是突出我或不。ng2-bootstrap。 e2e測試期間的錯誤
下面是我在做什麼:
- 下載從 https://github.com/valor-software/ng2-bootstrap
- 運行最新的
npm-install
- 運行
npm run build
- 運行
npm run link
- 最後運行
nmp run e2e
在第一次運行我得到了一個錯誤:SpecReporter is not a constructor
我能夠在protractor.conf.js更換const SpecReporter = require('jasmine-spec-reporter');
到const SpecReporter = require('jasmine-spec-reporter').SpecReporter;
修復,但不是還有另一個錯誤:Cannot find namespace 'webdriver'
我無法弄清楚如何固定。
所以,如果有人可以重複上述步驟,讓我知道如果你得到了相同的結果,我會很感激。
我已經創建了一個問題,在GitHub上一下:https://github.com/valor-software/ng2-bootstrap/issues/1665