Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cspell.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export default {
]
},
{
filename: [ 'src/lib/chaining-graph.cli.ts' ],
filename: [ 'src/lib/chaining/graph.cli.ts' ],
words: [
'rankdir', 'fontname', 'darkorange', 'steelblue'
]
Expand Down
2 changes: 1 addition & 1 deletion .sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ sonar.tests=.
sonar.exclusions=**/*.test.ts
sonar.test.inclusions=**/*.test.ts
# This should be kept in sync with the excludes from ".vitest.config.js"
sonar.coverage.exclusions=src/lib/utils/never.ts,.eslint.config.mjs,src/**/*.generated.ts,src/services/kyc/utils/generate-kyc-schema.ts
sonar.coverage.exclusions=src/lib/utils/never.ts,.eslint.config.mjs,src/**/*.generated.ts,src/services/kyc/utils/generate-kyc-schema.ts,src/**/fixtures.ts
7 changes: 6 additions & 1 deletion .vitest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ export default defineConfig({
* Exclude test files from coverage since they are not
* part of the source code
*/
'src/**/*.test.ts'
'src/**/*.test.ts',
/*
* Exclude shared test fixtures (servers, harnesses, helpers);
* they are test infrastructure, not production source.
*/
'src/**/fixtures.ts'
],
enabled: true
}
Expand Down
Loading