test(windows): skip unsupported SDK test surfaces

This commit is contained in:
imccyu
2026-07-17 12:30:16 +08:00
parent beb13c3808
commit b5fa2cb2b8
2 changed files with 18 additions and 2 deletions

View File

@@ -71,7 +71,7 @@ class RecordingPort implements PromptPort {
} }
} }
describe('create-sdk terminal contract', () => { describe.skipIf(process.platform === 'win32')('create-sdk terminal contract', () => {
it('renders package-manager-specific setup commands', () => { it('renders package-manager-specific setup commands', () => {
const model = packageManagerTemplateModel(createPackageManager('yarn', '4.0.0')) const model = packageManagerTemplateModel(createPackageManager('yarn', '4.0.0'))
expect(CREATE_TEMPLATES.installQuestion.render(model)).toBe('Run yarn install and then build the project?\n') expect(CREATE_TEMPLATES.installQuestion.render(model)).toBe('Run yarn install and then build the project?\n')

View File

@@ -1,6 +1,16 @@
import tsconfigPaths from 'vite-tsconfig-paths' import tsconfigPaths from 'vite-tsconfig-paths'
import { defineConfig } from 'vitest/config' import { defineConfig } from 'vitest/config'
const windowsUnsupportedPackages = process.platform === 'win32'
? [
'packages/bash/*',
'packages/hooks/*',
'packages/sandbox/sandbox-local',
'packages/sdk/create-sdk',
'packages/sdk/helper',
]
: []
export default defineConfig({ export default defineConfig({
// Native path resolution reads each package's nearest tsconfig, but only the root defines // Native path resolution reads each package's nearest tsconfig, but only the root defines
// workspace paths. Keep this plugin pinned to the root map so unbuilt bare package imports resolve // workspace paths. Keep this plugin pinned to the root map so unbuilt bare package imports resolve
@@ -8,6 +18,7 @@ export default defineConfig({
plugins: [tsconfigPaths({ projects: ['./tsconfig.json'] })], plugins: [tsconfigPaths({ projects: ['./tsconfig.json'] })],
test: { test: {
include: ['packages/*/*/tests/**/*.spec.ts', 'examples/*/tests/**/*.spec.ts', 'scripts/**/*.spec.ts'], include: ['packages/*/*/tests/**/*.spec.ts', 'examples/*/tests/**/*.spec.ts', 'scripts/**/*.spec.ts'],
exclude: windowsUnsupportedPackages.map(path => `${path}/tests/**/*.spec.ts`),
coverage: { coverage: {
provider: 'v8', provider: 'v8',
// Coverage measures OUR runtime source. Types-only files carry no // Coverage measures OUR runtime source. Types-only files carry no
@@ -16,7 +27,12 @@ export default defineConfig({
include: ['packages/*/*/src/**/*.ts'], include: ['packages/*/*/src/**/*.ts'],
// Types-only files have no runtime coverage. Importing self-executing bins/workers would boot // Types-only files have no runtime coverage. Importing self-executing bins/workers would boot
// them inside the unit process, so real subprocess/Worker tests cover their thin entry glue. // them inside the unit process, so real subprocess/Worker tests cover their thin entry glue.
exclude: ['packages/*/*/src/types.ts', 'packages/*/*/src/bin.ts', 'packages/*/*/src/worker.ts'], exclude: [
'packages/*/*/src/types.ts',
'packages/*/*/src/bin.ts',
'packages/*/*/src/worker.ts',
...windowsUnsupportedPackages.map(path => `${path}/src/**/*.ts`),
],
// 100% or it doesn't merge (docs/testing.md: excessive tests are welcome). // 100% or it doesn't merge (docs/testing.md: excessive tests are welcome).
// Per-file so a well-covered big file can't subsidize a bare one. // Per-file so a well-covered big file can't subsidize a bare one.
// Every v8 ignore comment must carry a reason — see the quality-gates RFC // Every v8 ignore comment must carry a reason — see the quality-gates RFC