-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TINY-10708: Suppress bedrock logs in remote testing (#142)
* TINY-10708: Reduce logs when on remote to 10% intervals. And only update HUD when `ResultData` has changed * TINY-10708: Added util/Env.ts * TINY-10708: Use `Env.IS_CI` instead of passing along the `remote` flag * TINY-10708: On CI, only log the first test start, otherwise skip them They have mostly repeated data from the previous test result log. * TINY-10708: Removed accidental `total - numSkipped` * TINY-10708: Updated changelog * Remove unnecessary async keyword Co-authored-by: ltrouton <[email protected]> * Update CHANGELOG.md Co-authored-by: Andrew Herron <[email protected]> * TINY-10708: Always update HUD on test failures * TINY-10708: bedrock-sample package json scripts now use chrome-headless instead of phantomjs --------- Co-authored-by: ltrouton <[email protected]> Co-authored-by: Andrew Herron <[email protected]>
- Loading branch information
1 parent
1fac4f6
commit a58099b
Showing
6 changed files
with
32 additions
and
12 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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export const IS_CI = 'CI' in process.env && process.stdout.isTTY; |