Update dependency jest to version 20.0.4#208
Merged
Conversation
Codecov Report
@@ Coverage Diff @@
## master #208 +/- ##
=======================================
Coverage 73.74% 73.74%
=======================================
Files 19 19
Lines 1093 1093
Branches 211 211
=======================================
Hits 806 806
Misses 287 287Continue to review full report at Codecov.
|
a6c2a3b to
c1ae25d
Compare
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
This Pull Request updates dependency jest from version
20.0.0to20.0.4Changelog
20.0.4 / 2017-05-24
small typos for fixing
It was only a comment so no worries
On windows (cmd, powershell, and cmder) the progress bar was broken. The issue is windows doesnt fully support inverse, and so just renders blank spaces. Changing it to a block character (ascii 219) and removing the inverse fixes this, and should still look the same across other terminals that worked before this change.
Added the missing closing quote.
The current example doesn't matches anything because the `/` is at the end.
```
new RegExp("node_modules/(?!react-native|my-project|react-native-button)/").test('node_modules/')
false
new RegExp("node_modules/(?!react-native|my-project|react-native-button)/").test('node_modules/react-native/')
false
new RegExp("node_modules/(?!react-native|my-project|react-native-button)/").test('node_modules/my-project/')
false
new RegExp("node_modules/(?!react-native|my-project|react-native-button)/").test('node_modules/my-project-foo/')
false
```
When we put the slash inside the parens, it does what I believe we expect.
```
new RegExp("node_modules/(?!react-native/|my-project/|react-native-button/)").test('node_modules/')
true
new RegExp("node_modules/(?!react-native/|my-project/|react-native-button/)").test('node_modules/react-native/')
false
new RegExp("node_modules/(?!react-native/|my-project/|react-native-button/)").test('node_modules/my-project/')
false
new RegExp("node_modules/(?!react-native/|my-project/|react-native-button/)").test('node_modules/my-project-foo/')
true
```
20.0.3 / 2017-05-17
20.0.2 / 2017-05-17
cc @cpojer
Changing current example (jQuery test) for simplify the understanding
The motivation for this change is why the output for current example (in verbose mode) is very strange
Fixes #3529
See: facebook/jest#3520
Fixed async calls to each reporter onRunComplete method
20.0.1 / 2017-05-11
confusion with `expect.assertions(<n>)`.
Fixes #3517
Manually merging the single file change.
🇧🇷❤️!
Remove extra trailing at the last line of rules