File tree Expand file tree Collapse file tree 2 files changed +6
-96
lines changed Expand file tree Collapse file tree 2 files changed +6
-96
lines changed Original file line number Diff line number Diff line change 1- # ############
2- # # System files
3- # ############
4-
51# Windows image file caches
62Thumbs.db
73ehthumbs.db
@@ -19,110 +15,21 @@ $RECYCLE.BIN/
1915logs
2016* .log
2117npm-debug.log *
22- yarn-debug.log *
23- yarn-error.log *
24- lerna-debug.log *
25-
26- # Diagnostic reports (https://nodejs.org/api/report.html)
27- report. [0-9 ]* . [0-9 ]* . [0-9 ]* . [0-9 ]* .json
28-
29- # Runtime data
30- pids
31- * .pid
32- * .seed
33- * .pid.lock
34-
35- # Directory for instrumented libs generated by jscoverage/JSCover
36- lib-cov
37-
38- # Coverage directory used by tools like istanbul
39- coverage
40- * .lcov
41-
42- # nyc test coverage
43- .nyc_output
44-
45- # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
46- .grunt
47-
48- # Bower dependency directory (https://bower.io/)
49- bower_components
50-
51- # node-waf configuration
52- .lock-wscript
53-
54- # Compiled binary addons (https://nodejs.org/api/addons.html)
55- build /Release
5618
5719# Dependency directories
5820node_modules /
59- jspm_packages /
60-
61- # TypeScript v1 declaration files
62- typings /
63-
64- # TypeScript cache
65- * .tsbuildinfo
66-
67- # Optional npm cache directory
68- .npm
69-
70- # Optional eslint cache
71- .eslintcache
72-
73- # Microbundle cache
74- .rpt2_cache /
75- .rts2_cache_cjs /
76- .rts2_cache_es /
77- .rts2_cache_umd /
78-
79- # Optional REPL history
80- .node_repl_history
8121
8222# Output of 'npm pack'
8323* .tgz
8424
85- # Yarn Integrity file
86- .yarn-integrity
87-
8825# dotenv environment variables file
8926.env
90- .env.test
91-
92- # parcel-bundler cache (https://parceljs.org/)
93- .cache
94-
95- # Next.js build output
96- .next
97-
98- # Nuxt.js build / generate output
99- .nuxt
100- dist
101-
102- # Gatsby files
103- .cache /
104- # Comment in the public line in if your project uses Gatsby and *not* Next.js
105- # https://nextjs.org/blog/next-9-1#public-directory-support
106- # public
107-
108- # vuepress build output
109- .vuepress /dist
110-
111- # Serverless directories
112- .serverless /
113-
114- # FuseBox cache
115- .fusebox /
116-
117- # DynamoDB Local files
118- .dynamodb /
119-
120- # TernJS port file
121- .tern-port
12227
12328# stryker temp files
12429.stryker-tmp
12530/reports
12631
127-
32+ coverage
33+ dist
12834package /
35+ test-report.junit.xml
Original file line number Diff line number Diff line change 1+ import { env } from 'node:process'
12import { defineConfig } from 'vitest/config'
23
34export default defineConfig ( {
45 test : {
56 include : [ './packages/**/*.test.{ts,tsx}' ] ,
7+ reporters : env . CI ? 'junit' : 'default' ,
8+ outputFile : 'test-report.junit.xml' ,
69 } ,
710} )
You can’t perform that action at this time.
0 commit comments