feat: add vitest testing

This commit is contained in:
William Will
2023-03-30 02:45:43 -06:00
parent b0db8caf65
commit e4725c23eb
3 changed files with 560 additions and 6 deletions

11
vitest.config.ts Normal file
View File

@ -0,0 +1,11 @@
/// <reference types="vitest" />
import { defineConfig } from "vite";
import path from "path";
export default defineConfig({
test: {
alias: {
"keycloakify": path.resolve(__dirname, "./src")
}
}
});