Skip to content

Commit a0703bf

Browse files
Enable other test suites
1 parent 09d963e commit a0703bf

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

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

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

3+
import { DEBUGGING_RUNNER } from './debugging/_debugging-runner';
4+
import { INTERACTIONS_RUNNER } from './interactions/_interactions-runner';
35
import { NOTEBOOK_RUNNER } from './notebooks/_notebook-runner';
46
import { Runner } from './runner.class';
57

@@ -19,8 +21,8 @@ export async function TestRunner(): Promise<number> {
1921
const clientRunner = new Runner(clientLogger);
2022

2123
// register all of our test runners
22-
// clientRunner.addRunner(INTERACTIONS_RUNNER);
23-
// clientRunner.addRunner(DEBUGGING_RUNNER);
24+
clientRunner.addRunner(INTERACTIONS_RUNNER);
25+
clientRunner.addRunner(DEBUGGING_RUNNER);
2426
clientRunner.addRunner(NOTEBOOK_RUNNER);
2527

2628
// test and return number of failures

0 commit comments

Comments
 (0)