Skip to content

Commit

Permalink
Do not reportTestResults on the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mokimo committed May 16, 2023
1 parent 5995cae commit e07dda5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
name: Unit Tests

env:
CI: true

on:
push:
branches:
Expand Down
2 changes: 1 addition & 1 deletion web-test-runner.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default {
},
plugins: [importMapsPlugin({})],
reporters: [
defaultReporter({ reportTestResults: true, reportTestProgress: true }),
defaultReporter({ reportTestResults: !process.env.CI, reportTestProgress: true }),
customReporter({ reportResults: true, reportProgress: true }),
],
};

0 comments on commit e07dda5

Please sign in to comment.