-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract gherkin-runner to separate module
Discovered while doing this some weirdness involving babel transpilation. gherkin-runner wasn't getting transpiled when tests run. Found some discussion of the issue, including an indication that a fix is due out in jest soon: jestjs/jest#4761 I updated jest to 21.3.0-beta.3 to see if that helped. It didn't at first, which turned out to be because it wasn't under the original package directory, so babel didn't know what transforms to run (?). (These thoughts are based on discussion here:) babel/babel-loader#293 I added some babel configuration to the root-level package.json which fixed the issue.
- Loading branch information
Showing
6 changed files
with
322 additions
and
1,002 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"name": "gherkin-runner", | ||
"version": "1.0.0", | ||
"main": "index.js", | ||
"license": "MIT", | ||
"private": true | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
web-client/packages/gui/src/tasks/recurring-task-subform.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.