-
Notifications
You must be signed in to change notification settings - Fork 801
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: patch support for react-dom 16.13 (#1428)
* fix: patch support for react-dom 16.13 * chore: separate tests for 15/16.10/16-latest
- Loading branch information
Showing
5 changed files
with
108 additions
and
58 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
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
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
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 |
---|---|---|
|
@@ -23,16 +23,32 @@ yarn test:react-dom:prepare | |
# echo "\n\n" | ||
# echo "\n\n" | ||
|
||
echo "Installing React 16" | ||
echo "Installing React 16.10" | ||
yarn add react@16 [email protected] [email protected] --pure-lockfile | ||
echo "\n\n" | ||
|
||
yarn test:react-dom:prepare | ||
|
||
echo "Running tests on React 16.10 - Babel ES2015" | ||
yarn test:es2015 | ||
echo "\n\n" | ||
|
||
echo "Running tests on React 16.10 - Babel Modern" | ||
yarn test:modern --coverage && codecov | ||
echo "\n\n" | ||
|
||
|
||
|
||
echo "Installing React 16:latest" | ||
yarn add react@16 react-dom@16 react-test-renderer@16 --pure-lockfile | ||
echo "\n\n" | ||
|
||
yarn test:react-dom:prepare | ||
|
||
echo "Running tests on React 16 - Babel ES2015" | ||
echo "Running tests on React 16:latest - Babel ES2015" | ||
yarn test:es2015 | ||
echo "\n\n" | ||
|
||
echo "Running tests on React 16 - Babel Modern" | ||
echo "Running tests on React 16:latest - Babel Modern" | ||
yarn test:modern --coverage && codecov | ||
echo "\n\n" |
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