Skip to content

Commit bc3b006

Browse files
committed
chore(*): swap reporter enabled check
1 parent c5ca30a commit bc3b006

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

projects/igniteui-angular/src/lib/test-utils/configure-suite.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,10 @@ export const configureTestSuite = (configureAction?: () => TestBed) => {
5252
});
5353
};
5454

55-
// should be accessible on re-run by selecting enable debug logging
55+
// TODO: enable on re-run by selecting enable debug logging
5656
// https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/troubleshooting-workflows/enabling-debug-logging
57-
if (process.env.ACTIONS_RUNNER_DEBUG) {
57+
const shardLogging = false;
58+
if (shardLogging) {
5859
const myReporter = {
5960
suiteStarted: function(result) {
6061
const id = new URLSearchParams(window.parent.location.search).get('id');

0 commit comments

Comments
 (0)