Files
booklore/booklore-ui/vitest-base.config.ts
arjunsrinivasan1997 4253322d2c feat(ui): add password confirmations (#2291)
* 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>
2026-01-19 08:41:42 -07:00

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'}]
]
},
});