Skip to content
Snippets Groups Projects
Verified Commit e684cb45 authored by Georg Krause's avatar Georg Krause
Browse files

Configure coverage and test result reports

parent 3eb510f6
No related branches found
No related tags found
No related merge requests found
Pipeline #23521 failed
......@@ -21,3 +21,7 @@ pages:
test:
script: yarn test
artifacts:
reports:
junit: junit.xml
cobertura: coverage/cobertura-coverage.xml
......@@ -6,6 +6,11 @@ export default defineConfig({
plugins: [vue()],
test: {
global: true,
environment: 'happy-dom'
environment: 'happy-dom',
reporters: 'junit',
outputFile: 'junit.xml',
coverage: {
reporter: 'cobertura'
}
}
})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment