feat: add db schema, init, and vitest config
This commit is contained in:
parent
74cfc82bdd
commit
4fa3073412
13 changed files with 248 additions and 8 deletions
10
data-pipeline/vitest.config.ts
Normal file
10
data-pipeline/vitest.config.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import { defineConfig } from "vitest/config";
|
||||
|
||||
export default defineConfig({
|
||||
test: {
|
||||
environment: "node",
|
||||
globals: true,
|
||||
include: ["tests/**/*.test.ts"],
|
||||
exclude: ["**/dist/**", "**/node_modules/**"],
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue