Initial Upload
Some checks failed
CI / Lint & Typecheck (push) Has been cancelled
CI / Test (routes) (push) Has been cancelled
CI / Test (security) (push) Has been cancelled
CI / Test (services) (push) Has been cancelled
CI / Test (unit) (push) Has been cancelled
CI / Test (integration) (push) Has been cancelled
CI / Test Coverage (push) Has been cancelled
CI / Build (push) Has been cancelled
Some checks failed
CI / Lint & Typecheck (push) Has been cancelled
CI / Test (routes) (push) Has been cancelled
CI / Test (security) (push) Has been cancelled
CI / Test (services) (push) Has been cancelled
CI / Test (unit) (push) Has been cancelled
CI / Test (integration) (push) Has been cancelled
CI / Test Coverage (push) Has been cancelled
CI / Build (push) Has been cancelled
This commit is contained in:
42
apps/server/vitest.services.config.ts
Normal file
42
apps/server/vitest.services.config.ts
Normal file
@@ -0,0 +1,42 @@
|
||||
/**
|
||||
* Services Tests Configuration
|
||||
*
|
||||
* Business logic and background job tests:
|
||||
* - services/* (rules, cache, geoip, userService, tautulli)
|
||||
* - jobs/* (aggregator, poller logic)
|
||||
*
|
||||
* May use mocks for external dependencies.
|
||||
*
|
||||
* Run: pnpm test:services
|
||||
*/
|
||||
|
||||
import { defineConfig, mergeConfig } from 'vitest/config';
|
||||
import { sharedConfig } from './vitest.shared.js';
|
||||
|
||||
export default mergeConfig(
|
||||
sharedConfig,
|
||||
defineConfig({
|
||||
test: {
|
||||
name: 'services',
|
||||
include: [
|
||||
'src/services/__tests__/*.test.ts',
|
||||
'src/jobs/__tests__/*.test.ts',
|
||||
'src/jobs/poller/__tests__/*.test.ts',
|
||||
],
|
||||
coverage: {
|
||||
provider: 'v8',
|
||||
reporter: ['text', 'json', 'json-summary'],
|
||||
reportsDirectory: './coverage/services',
|
||||
include: [
|
||||
'src/services/**/*.ts',
|
||||
'src/jobs/**/*.ts',
|
||||
],
|
||||
exclude: [
|
||||
'**/*.test.ts',
|
||||
'**/test/**',
|
||||
'src/services/mediaServer/**/*.ts', // Covered by unit tests
|
||||
],
|
||||
},
|
||||
},
|
||||
})
|
||||
);
|
||||
Reference in New Issue
Block a user