13 lines
233 B
TypeScript
13 lines
233 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export const srcTestFolderConfig = function (baseUrl: string) {
|
|
return defineConfig({
|
|
test: {
|
|
alias: {
|
|
'@/': new URL('./src/', baseUrl).pathname
|
|
},
|
|
dir: 'tests'
|
|
}
|
|
})
|
|
}
|