ci: skip server e2e tests on windows (#1126)

This commit is contained in:
liruifengv 2026-06-26 18:01:22 +08:00 committed by GitHub
parent 81ba48f455
commit e5eaeb4634
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -60,5 +60,10 @@ export default defineConfig({
test: {
name: 'server',
include: ['test/**/*.{test,e2e}.ts'],
// The server e2e tests pull in the full agent-core tree, which makes module
// import very slow on Windows runners and destabilizes the test-windows job
// (flaky timeouts and worker crashes). Skip them on Windows; they still run
// on the Linux/macOS `test` job.
exclude: process.platform === 'win32' ? ['test/**/*.e2e.test.ts'] : [],
},
});