fix(ci): stabilize Windows startup fallback tests (#101223)

* test(windows): stabilize startup fallback fixtures

* ci(windows): route daemon scheduler changes
This commit is contained in:
Peter Steinberger
2026-07-07 00:37:50 +01:00
committed by GitHub
parent c5161f96ce
commit dbba3d2a8e
3 changed files with 26 additions and 2 deletions

View File

@@ -420,6 +420,24 @@ describe("detectChangedScope", () => {
runChangedSmoke: false,
runControlUiI18n: false,
});
for (const daemonPath of [
"src/daemon/schtasks.ts",
"src/daemon/schtasks-exec.ts",
"src/daemon/schtasks.startup-fallback.test.ts",
"src/daemon/runtime-hints.windows-paths.test.ts",
"src/daemon/test-helpers/schtasks-fixtures.ts",
]) {
expect(detectChangedScope([daemonPath]), daemonPath).toEqual({
runNode: true,
runMacos: false,
runIosBuild: false,
runAndroid: false,
runWindows: true,
runSkillsPython: false,
runChangedSmoke: false,
runControlUiI18n: false,
});
}
expect(detectChangedScope(["src/shared/runtime-import.ts"])).toEqual({
runNode: true,
runMacos: false,