We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5ca30a commit bc3b006Copy full SHA for bc3b006
projects/igniteui-angular/src/lib/test-utils/configure-suite.ts
@@ -52,9 +52,10 @@ export const configureTestSuite = (configureAction?: () => TestBed) => {
52
});
53
};
54
55
-// should be accessible on re-run by selecting enable debug logging
+// TODO: enable on re-run by selecting enable debug logging
56
// https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/troubleshooting-workflows/enabling-debug-logging
57
-if (process.env.ACTIONS_RUNNER_DEBUG) {
+const shardLogging = false;
58
+if (shardLogging) {
59
const myReporter = {
60
suiteStarted: function(result) {
61
const id = new URLSearchParams(window.parent.location.search).get('id');
0 commit comments