mirror of
https://github.com/booklore-app/booklore.git
synced 2026-02-18 00:17:53 +01:00
* feat(ui): add password confirmation to setup screen * feat(ui): add password confirmation to create user dialog * fix(tests): force frontend tests to use jsdom, and run tests in isolated environment. Also add debug statements to further diagnose failing test if needed --------- Co-authored-by: ACX <8075870+acx10@users.noreply.github.com>
13 lines
264 B
TypeScript
13 lines
264 B
TypeScript
import {defineConfig} from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'jsdom',
|
|
isolate: true,
|
|
reporters: [
|
|
['default', {summary: false}],
|
|
['junit', {outputFile: 'test-results/vitest-results.xml'}]
|
|
]
|
|
},
|
|
});
|