Skip to content

Commit

Permalink
Merge pull request #8259 from jrjohnson/failure-only-reporter
Browse files Browse the repository at this point in the history
Use Better CI Reporter
  • Loading branch information
dartajax authored Dec 9, 2024
2 parents e43f9a1 + 2a3961f commit c0c365a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/frontend/testem.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/* eslint camelcase: 0 */
'use strict';

const FailureOnlyReporter = require('testem-failure-only-reporter');

module.exports = {
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
Expand All @@ -9,6 +11,7 @@ module.exports = {
browser_disconnect_timeout: 300,
browser_start_timeout: 120,
parallel: process.env.EMBER_EXAM_SPLIT_COUNT || -1,
reporter: FailureOnlyReporter,
browser_args: {
Chrome: {
ci: [
Expand Down
3 changes: 3 additions & 0 deletions packages/lti-course-manager/testem.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
/* eslint camelcase: 0 */
'use strict';

const FailureOnlyReporter = require('testem-failure-only-reporter');

module.exports = {
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
launch_in_ci: ['Chrome'],
launch_in_dev: ['Chrome'],
browser_start_timeout: 120,
reporter: FailureOnlyReporter,
parallel: process.env.EMBER_EXAM_SPLIT_COUNT || -1,
browser_args: {
Chrome: {
Expand Down
3 changes: 3 additions & 0 deletions packages/lti-dashboard/testem.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
/* eslint camelcase: 0 */
'use strict';

const FailureOnlyReporter = require('testem-failure-only-reporter');

module.exports = {
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
launch_in_ci: ['Chrome'],
launch_in_dev: ['Chrome'],
browser_start_timeout: 120,
reporter: FailureOnlyReporter,
parallel: process.env.EMBER_EXAM_SPLIT_COUNT || -1,
browser_args: {
Chrome: {
Expand Down
2 changes: 2 additions & 0 deletions packages/test-app/testem.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'use strict';
const FailureOnlyReporter = require('testem-failure-only-reporter');

module.exports = {
test_page: 'tests/index.html?hidepassed',
Expand All @@ -7,6 +8,7 @@ module.exports = {
launch_in_dev: ['Chrome'],
browser_disconnect_timeout: 120,
browser_start_timeout: 30,
reporter: FailureOnlyReporter,
parallel: process.env.EMBER_EXAM_SPLIT_COUNT || -1,
browser_args: {
Chrome: {
Expand Down

0 comments on commit c0c365a

Please sign in to comment.