-
Notifications
You must be signed in to change notification settings - Fork 1.4k
feat(protractor): add e2e tests in CI #837
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@Shyam-Chen awesome! The build is passing now. Are we ready to merge? |
@@ -28,7 +28,7 @@ | |||
"serve.prod": "gulp serve.prod --color", | |||
"start": "gulp serve.dev --color", | |||
"tasks.list": "gulp --tasks-simple --color", | |||
"test": "gulp test --color", | |||
"test": "gulp test --color && gulp build.prod --color && gulp build.js.e2e --color && gulp e2e --color", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets move gulp e2e
to a script called e2e
and thus:
npm run e2e
Most developers will expect to run only karma when run npm t
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, we can have npm run tests.all
which runs both npm test && npm run e2e
. This command can be used in CI.
@Shyam-Chen really awesome job! Left some minor comments. |
OK |
LGMT! @Shyam-Chen ready for merge? |
merge |
Closes #732