test: use vitest instead of jest

This commit is contained in:
Johannes Loher 2022-08-22 22:05:14 +02:00
parent 7d953d5a50
commit bb6d22d14a
12 changed files with 530 additions and 2288 deletions

11
vite.config.js Normal file
View file

@ -0,0 +1,11 @@
// SPDX-FileCopyrightText: 2022 Johannes Loher
//
// SPDX-License-Identifier: MIT
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
setupFiles: ["./spec/setup.ts"],
},
});