b7656c1a13
* test(shared): add more tests to auth policies * test(shared): add more tests to auth policies * chore(authz): fix export * chore(authz): test env fix * chore(authz): more test fixes --------- Co-authored-by: Charles Driesler <chuck@speckle.systems>
17 lines
301 B
TypeScript
17 lines
301 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
sequence: {
|
|
shuffle: true
|
|
},
|
|
fileParallelism: true,
|
|
reporters: ['default', 'html'],
|
|
coverage: {
|
|
enabled: true,
|
|
provider: 'v8',
|
|
include: ['src/**/*.{ts,tsx}']
|
|
}
|
|
}
|
|
})
|