Skip to content

Commit c154ee6

Browse files
Update log names
1 parent a649233 commit c154ee6

4 files changed

Lines changed: 6 additions & 8 deletions

File tree

apps/client-e2e/src/tests/debugging/_debugging-runner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { VariableReplacement } from './variable-replacement';
2222
* Logger to be used for tests related to debugging
2323
*/
2424
// eslint-disable-next-line @typescript-eslint/no-empty-function
25-
export const DEBUG_TEST_LOGGER = new Logger('tests-debug', false, () => {});
25+
export const DEBUG_TEST_LOGGER = new Logger('debugging-tests', false, () => {});
2626

2727
/**
2828
* Test runner for debugging

apps/client-e2e/src/tests/interactions/_interactions-runner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import { TasksInteractRight } from './tasks-interact-right';
3333
* Logger to be used for tests related to debugging
3434
*/
3535
export const INTERACTIONS_TEST_LOGGER = new Logger(
36-
'tests-interaction',
36+
'interaction-tests',
3737
false,
3838
// eslint-disable-next-line @typescript-eslint/no-empty-function
3939
() => {}

apps/client-e2e/src/tests/notebooks/_notebook-runner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import { VerifyQuietNotebookSetting } from './verify-quiet-notebook-setting';
3434
* Logger to be used for tests related to debugging
3535
*/
3636
export const NOTEBOOK_TEST_LOGGER = new Logger(
37-
'tests-notebook',
37+
'notebook-tests',
3838
false,
3939
// eslint-disable-next-line @typescript-eslint/no-empty-function
4040
() => {}

apps/client-e2e/src/tests/test-runner.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import { Logger } from '@idl/logger';
22

3-
import { DEBUGGING_RUNNER } from './debugging/_debugging-runner';
4-
import { INTERACTIONS_RUNNER } from './interactions/_interactions-runner';
53
import { NOTEBOOK_RUNNER } from './notebooks/_notebook-runner';
64
import { Runner } from './runner.class';
75

@@ -15,14 +13,14 @@ export async function TestRunner(): Promise<number> {
1513
* Logger to be used for tests related to debugging
1614
*/
1715
// eslint-disable-next-line @typescript-eslint/no-empty-function
18-
const clientLogger = new Logger('tests-client', false, () => {});
16+
const clientLogger = new Logger('test-runner', false, () => {});
1917

2018
// primary test runner
2119
const clientRunner = new Runner(clientLogger);
2220

2321
// register all of our test runners
24-
clientRunner.addRunner(INTERACTIONS_RUNNER);
25-
clientRunner.addRunner(DEBUGGING_RUNNER);
22+
// clientRunner.addRunner(INTERACTIONS_RUNNER);
23+
// clientRunner.addRunner(DEBUGGING_RUNNER);
2624
clientRunner.addRunner(NOTEBOOK_RUNNER);
2725

2826
// test and return number of failures

0 commit comments

Comments
 (0)