Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
chore: run e2e tests on demand #441
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: run e2e tests on demand #441
Changes from 11 commits
c3b427d
27bfa90
cd7b015
7015f64
d1acd31
b367d80
52a20d8
c0a4301
38fdb75
ea45fdf
bdf800f
e3a83ce
6db56fa
6046c08
08e8050
ff9a87f
13103b8
3a189ba
5fbdc66
f86e54f
065e538
29ed2e7
0cfb133
92f1183
e196ae1
9c1e339
33d87f7
19c10c4
f792e5c
ba91ab7
51677d8
9f9b6d6
d0f9736
530d50d
df4e51a
5ff1931
9d0daa8
1d22541
1e4c897
ee00ffc
57c3bb0
0de1d03
64304ce
4f62c1a
973a9d5
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
For consistency with the e2e test, can we change this command to be everywhere:
So that in the future we can (if we want or need):
npm run test
will execute the unit tests and then the e2e tests. If we have new kind of tests we want to add to the sequence, we can do it by adding them here.I used this similar pattern in past teams as a customer and makes things easy.
npm run test:acceptance
)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.
Note: this is not much about the unique command, but more of a matter of naming consistency.
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.
Minor: can we add a real example?