mirror of
https://github.com/cline/cline.git
synced 2026-09-21 13:21:23 +08:00
api-configuration-conversion.test.ts is picked up by both the vitest runner and the mocha-based vscode-test integration runner (.vscode-test.mjs globs src/shared/**/*.test.js). vitest's jest-compat matcher toMatchObject does not exist in the mocha runtime, so the test passed under vitest but threw "toMatchObject is not a function" in the integration suite, failing the nightly publish. Assert the two provider fields with toBe, which works under both runners.