File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Expand file tree Collapse file tree 2 files changed +9
-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,14 @@ async function main() {
2122 const tasks = [ ] ;
2223 const progress = { } ;
2324
25+ console . log ( '---' ) ;
26+ readdirSync ( path . resolve ( runfilesDir , 'angular_cli' ) ) . forEach ( ( file ) => {
27+ console . log ( file ) ;
28+ } ) ;
29+ console . log ( '---' ) ;
30+ readdirSync ( testWorkingDir ) . forEach ( ( file ) => {
31+ console . log ( file ) ;
32+ } ) ;
2433 console . log ( '---' ) ;
2534 console . warn ( {
2635 targetName,
You can’t perform that action at this time.
0 commit comments