czlonkowski--n8n-mcp
409e92d6ae
Build and Push Docker Images / Build Docker Image (push) Has been cancelled
Build and Push Docker Images / Build Railway Docker Image (push) Has been cancelled
Build and Publish n8n Docker Image / test-image (push) Has been cancelled
Dependency Compatibility Check / Fresh Install Dependency Check (push) Has been cancelled
Build and Publish n8n Docker Image / build-and-push (push) Has been cancelled
Build and Publish n8n Docker Image / create-release (push) Has been cancelled
Automated Release / Detect Version Change (push) Has been cancelled
Automated Release / Generate Release Notes (push) Has been cancelled
Automated Release / Create GitHub Release (push) Has been cancelled
Automated Release / Package MCPB Bundle (push) Has been cancelled
Automated Release / Build and Verify (push) Has been cancelled
Automated Release / Publish to NPM (push) Has been cancelled
Automated Release / Build and Push Docker Images (push) Has been cancelled
Automated Release / Update Documentation (push) Has been cancelled
Automated Release / Notify Release Completion (push) Has been cancelled
Secret Scan / secretlint (push) Has been cancelled
Test Suite / test (push) Has been cancelled
Test Suite / cjs-runtime (push) Has been cancelled
Test Suite / publish-results (push) Has been cancelled
29 行
886 B
TypeScript
29 行
886 B
TypeScript
import { defineConfig, mergeConfig } from 'vitest/config';
|
|
import baseConfig from './vitest.config';
|
|
|
|
export default mergeConfig(
|
|
baseConfig,
|
|
defineConfig({
|
|
test: {
|
|
// Include global setup, but NOT integration-setup.ts for n8n-api tests
|
|
// (they need real network requests, not MSW mocks)
|
|
setupFiles: ['./tests/setup/global-setup.ts'],
|
|
// Only include integration tests
|
|
include: ['tests/integration/**/*.test.ts'],
|
|
// Integration tests might need more time
|
|
testTimeout: 30000,
|
|
// Specific pool options for integration tests
|
|
poolOptions: {
|
|
threads: {
|
|
// Run integration tests sequentially by default
|
|
singleThread: true,
|
|
maxThreads: 1
|
|
}
|
|
},
|
|
// Disable coverage for integration tests or set lower thresholds
|
|
coverage: {
|
|
enabled: false
|
|
}
|
|
}
|
|
})
|
|
); |