File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,6 @@ jobs:
128128 run : pnpm bazel test --test_env=E2E_SHARD_TOTAL=6 --test_env=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.${{ matrix.subset }}_node${{ matrix.node }}
129129
130130 e2e-windows-subset :
131- needs : build
132131 runs-on : windows-2025
133132 steps :
134133 - name : Initialize environment
Original file line number Diff line number Diff line change 88
99import * as child_process from 'node:child_process' ;
1010import path from 'node:path' ;
11+ import { readdirSync } from 'node:fs' ;
1112import { stripVTControlCharacters } from 'node:util' ;
1213
1314const initialStatusRegex = / R u n n i n g ( \d + ) t e s t s / ;
@@ -21,6 +22,12 @@ async function main() {
2122 const tasks = [ ] ;
2223 const progress = { } ;
2324
25+ console . log ( '---' ) ;
26+
27+ console . log ( '---' ) ;
28+ readdirSync ( testWorkingDir ) . forEach ( ( file ) => {
29+ console . log ( file ) ;
30+ } ) ;
2431 console . log ( '---' ) ;
2532 console . warn ( {
2633 targetName,
You can’t perform that action at this time.
0 commit comments