Skip to content

Commit 8f7e888

Browse files
committed
wip!
1 parent 6fbb5dd commit 8f7e888

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/pr.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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

scripts/windows-testing/parallel-executor.mjs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
import * as child_process from 'node:child_process';
1010
import path from 'node:path';
11+
import { readdirSync } from 'node:fs';
1112
import { stripVTControlCharacters } from 'node:util';
1213

1314
const initialStatusRegex = /Running (\d+) tests/;
@@ -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,

0 commit comments

Comments
 (0)