-
Notifications
You must be signed in to change notification settings - Fork 116
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
chore(tests): e2e tests #142
Conversation
e1fcb4f
to
0537a9e
Compare
tavis failing 🙁 |
33edb73
to
c94a522
Compare
f2526b1
to
c06d9f3
Compare
7aaa7bb
to
8fa2626
Compare
3e1c691
to
73c27e8
Compare
I only ended up being able to support a subset of tests on travis, but this should be good to go once we merge in #162 |
Unblocked! This is ready to review, but we should still merge #161 first though |
}); | ||
gulp.task('start', ['build', 'shutdown'], function(done) { |
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.
fyi, Craig and I have talked about moving away from gulp to just shell scripts. That's similar to what Angular does for their CI. I think it's a bit easier to maintain, when all you're doing is spawning a bunch of processes in sequence.
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.
I'll leave the transition to Craig. But I do agree.
|
||
gulp.task('test', ['format', 'test:unit', 'test:e2e']); | ||
gulp.task('test:no_update', ['format', 'test:unit', 'test:e2e:no_update']); | ||
gulp.task('test:no_screen', ['format', 'test:unit', 'test:e2e:no_screen']); |
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.
I think 'headless' is the more common term for this kind of thing than 'no_screen', but it's up to you.
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.
+1 much better name
lgtm! Just some optional suggestions |
Travis only runs a subset of tests via `npm run test_travis`, but `npm test` runs a full suite. See angular#165 for details on why travis cannot run all tests.
Travis only runs a subset of tests via `npm run test_travis`, but `npm test` runs a full suite. See angular#165 for details on why travis cannot run all tests.
Travis only runs a subset of tests via `npm run test_travis`, but `npm test` runs a full suite. See angular#165 for details on why travis cannot run all tests.
Travis only runs a subset of tests via `npm run test_travis`, but `npm test` runs a full suite. See angular#165 for details on why travis cannot run all tests.
Travis only runs a subset of tests via
npm run test_travis
, butnpm test
runs a full suite.See #165 for details on why travis cannot run all tests.