Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,10 @@ jobs:
run: ./.agents/skills/write-stable-tests/scripts/test-stability-windows.ps1 -Scope WindowsRust -SuiteTimeoutSeconds 1080

- name: Generate combined Windows test report
if: always()
if: >-
always() &&
(needs.changes.outputs.rust_core == 'true' ||
needs.changes.outputs.windows_rust == 'true')
shell: pwsh
run: node .agents/skills/write-stable-tests/scripts/generate-test-report.mjs

Expand Down
3 changes: 1 addition & 2 deletions windows/tauri/src/features/run/api/run-host-api.test.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import { Channel } from "@tauri-apps/api/core";
import { beforeEach, describe, expect, mock, test } from "bun:test";

const invoke = mock(async () => undefined);

mock.module("@/platform/tauri-core", () => ({
invoke,
Channel,
Channel: class {},
convertFileSrc: (path: string) => path,
}));
mock.module("../utils/run-window-context", () => ({
Expand Down
Loading