Skip to content

Commit c23189a

Browse files
Print test number for running tests
1 parent eb3a647 commit c23189a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,9 @@ export class Runner {
9595
try {
9696
// check if we should skip running the test
9797
if (!this.canRunTest(this.tests[i])) {
98-
this.logger.warn(`Skipping test: ${this.tests[i].name}`);
98+
this.logger.warn(
99+
`(${i + 1}/${nTests}) Skipping test: "${this.tests[i].name}"`
100+
);
99101
continue;
100102
}
101103

0 commit comments

Comments
 (0)