Skip to content

Commit 5afd9c3

Browse files
Extend override config from base
1 parent ceee28c commit 5afd9c3

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

examples/vitest/vitest.override.config.js

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1+
import baseConfig from './vitest.config';
2+
13
const config = {
24
// Send results to Test Engine
5+
...baseConfig,
36
test: {
4-
reporters: [
5-
'default',
6-
['buildkite-test-collector/vitest/reporter', {
7-
tags: { hello: "vitest" }
8-
}]
9-
],
7+
...baseConfig.test,
108
includeTaskLocation: false,
119
}
1210
};

0 commit comments

Comments
 (0)