test: add notification preferences tests

This commit is contained in:
Kirill
2026-05-18 11:58:30 +05:00
parent 6054ef4c06
commit 6912008a2c
3 changed files with 29 additions and 7 deletions
+17
View File
@@ -0,0 +1,17 @@
import path from 'node:path'
import { defineConfig } from 'vitest/config'
const projectRoot = path.resolve(__dirname, '..')
export default defineConfig({
resolve: {
alias: {
'@shared': path.resolve(projectRoot, 'shared'),
},
},
server: {
fs: {
allow: [projectRoot],
},
},
})