@profullstack/auth-system
Version:
Flexible authentication system with user registration, login/logout, password reset, and session management
15 lines (14 loc) • 343 B
JavaScript
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
environment: 'node',
include: ['test/**/*.test.js'],
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
exclude: ['node_modules/', 'test/']
},
bail: 1, // Stop after first failure
globals: true
}
});