Я новичок в машинописи Protractor, и у меня настоящая головная боль при компиляции тестового файла.
Смотрите видео здесь
Как вы можете видеть код, есть ошибка (ошибка TS2582): в тестовом примере .ts (этого не было раньше, я уверен).
Как мне это исправить, чтобы я мог скомпилировать с tsc и успешно запустить мой тест?
Вот код:
ChaLoctestscript.ts:5:1 - error TS2582: Cannot find name 'describe'. Do you need to install type definitions for a test runner? Try `npm i @types/jest
` or `npm i @types/mocha` and then add `jest` or `mocha` to the types field in your tsconfig.
5 describe('Using chain loctor',function(){
~~~~~~~~
ChaLoctestscript.ts:8:2 - error TS2582: Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i @types/jest` or `
npm i @types/mocha` and then add `jest` or `mocha` to the types field in your tsconfig.
8 it('Opening google page',function(){
~~
Found 2 errors.