НПМ и «одновременно» проваливаются - PullRequest
0 голосов
/ 03 января 2019

Попытка запустить тесты Protractor / Jasmine e2e в конвейере Azure.Однако я не могу заставить тесты запускаться локально, используя «Одновременно» в моем package.json файле.

Вот соответствующий раздел:

"scripts": {
"pree2e": "webdriver-manager update",
"e2e": "concurrently -k -s \"dotnet run\"   \"protractor\" SmokeTest.js",
"test": "echo \"Error: no test specified\" && exit 1"

... и ошибка:

>dbm_protractor@1.0.0 e2e F:\Projects\DBM\DBM
> concurrently -k -s "dotnet run"   "protractor" SmokeTest.js

'concurrently' is not recognized as an internal or external command,
operable program or batch file.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! dbm_protractor@1.0.0 e2e: `concurrently -k -s "dotnet run"   
"protractor" SmokeTest.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the dbm_protractor@1.0.0 e2e script.
npm ERR! This is probably not a problem with npm. There is likely 
additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\David\AppData\Roaming\npm-cache\_logs\2019-01- 
03T18_19_19_405Z-debug.log

Часть pree2e работает нормально после ввода npm e2e run

Любые идеи, пожалуйста?

Спасибо, Дэвид

...