Update gulpfile and project to add a tsconfig to protractor test folders Change all sample e2e-spec.js -> e2e-spec.ts Split typings between e2e-spec & app code Use same config for all e2e tests Only 1/3 e2e specs truly converted. Most don't pass because they fail TS transpile by Protractor due to missing type annotations
20 lines
448 B
JSON
20 lines
448 B
JSON
{
|
|
"name": "angular2-examples-protractor",
|
|
"version": "1.0.0",
|
|
"description": "Manage _protractor folder installations",
|
|
"scripts": {
|
|
"postinstall": "typings install",
|
|
"typings": "typings",
|
|
"protractor": "protractor",
|
|
"webdriver:update": "webdriver-manager update"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"protractor": "^3.3.0",
|
|
"typings": "^1.0.4"
|
|
},
|
|
"repository": {}
|
|
}
|