Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
ENG-1059: Throw errors#2
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
base:3.x
Are you sure you want to change the base?
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -20,6 +20,4 @@ testpullfilecache* | ||
| .DS_Store | ||
| package-lock.json | ||
| yarn.lock | ||
| /.vs | ||
| typings/types.d.ts | ||
| typings/promiseBasedTypes.d.ts | ||
| /.vs | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -70,6 +70,7 @@ class CodeceptRerunner extends BaseCodecept { | ||
| await this.runTests(test); | ||
| } catch (e) { | ||
| output.error(e.stack); | ||
| throw e; | ||
CollaboratorAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is the actual fix, which causes the | ||
| } finally { | ||
| event.emit(event.all.result, this); | ||
| event.emit(event.all.after, this); | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| exports.config = { | ||
| tests: './*_ftest.js', | ||
| output: './output', | ||
| helpers: { | ||
| CustomHelper: { | ||
| require: './customHelper.js', | ||
| }, | ||
| }, | ||
| rerun: { | ||
| minSuccess: 3, | ||
| maxReruns: 3, | ||
| }, | ||
| bootstrap: null, | ||
| mocha: {}, | ||
| name: 'run-rerun', | ||
| }; |
Uh oh!
There was an error while loading. Please reload this page.
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.
Annoyingly, TSLint was failing because these files weren't committed to the repo 🙃.