-
Notifications
You must be signed in to change notification settings - Fork 107
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
Upgrade to babel 7 and resolve source map support failure in tests #510
Merged
Conversation
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
elenadimitrova
force-pushed
the
maintenance/317-test-refactoring
branch
from
January 24, 2019 17:18
79d9a2a
to
7f3216d
Compare
elenadimitrova
changed the title
Upgrade to babel 7
Upgrade to babel 7 and resolve source map support failure in tests
Jan 25, 2019
area
force-pushed
the
maintenance/317-test-refactoring
branch
from
January 25, 2019 14:49
ed3ef57
to
8248a22
Compare
area
approved these changes
Jan 25, 2019
area
reviewed
Jan 25, 2019
test-gas-costs/gasCosts.js
Outdated
minerAddress: STAKER1, | ||
realProviderPort: REAL_PROVIDER_PORT, | ||
useJsTree: true | ||
}); | ||
const badClient = new MaliciousReputationMinerExtraRep( | ||
{ loader: contractLoader, minerAddress: STAKER2, realProviderPort: REAL_PROVIDER_PORT }, |
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.
Shouldn't the bad client get to use it too? 😄
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.
Yes of course.. I'll do that
elenadimitrova
force-pushed
the
maintenance/317-test-refactoring
branch
from
January 25, 2019 18:31
fefc28f
to
74c5c6a
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
In an attempt to coerce
mocha
to report back correct code line numbers on test failures (sample failing build reporting bad lines) we upgrad tobabel@7
here. Although this hasn't solved the "line number" issue it is worth upgrading as it's not a straight forward change. Because.babelrc
is no longer recognised as a global configuration, this had to be switched tobabel.config.js
see https://babeljs.io/docs/en/config-files#root-babelconfigjs-files and jestjs/jest#6053 (comment) for explanation.Ultimately after much digging in historical builds and merged changes, we managed to pinpoint the bad commit that started causing the incorrect line number reports in test failures. To solve this issue we pinned the
ganache-core
version down to a working one. Logged trufflesuite/ganache#287 as a result.Upgrading to
node@10.12
here as well to match the dApp.