-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: update paltform and implement env.config
- Loading branch information
mashal-m
committed
Jul 13, 2023
1 parent
26d8c5a
commit 25a6445
Showing
6 changed files
with
27,258 additions
and
17,130 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
FALSE_VALUE: false, | ||
CORRECT_BOOL_VALUE: 'Good, false meant false. We did not cast a boolean to a string.', | ||
INCORRECT_BOOL_VALUE: 'Why was a false boolean true?', | ||
INTEGER_VALUE: 123, | ||
}; |
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,12 @@ | ||
module.exports = { | ||
// DO NOT PUT ANY CONFIGURATION IN THIS FILE. | ||
|
||
// The existence of this file is a technical detail of the mechanism used to implement | ||
// env.config.js files for jest. | ||
|
||
// This file is used as a fallback to prevent build errors if an env.config.js file has not been | ||
// defined in a consuming application. If we could inline an empty object instead of needing a | ||
// file to reference, that'd be clearer, but doesn't seem to be an option. | ||
|
||
// This is NOT an appropriate place to put actual configuration values for tests. | ||
}; |
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
Oops, something went wrong.