Initial commit

This commit is contained in:
2024-02-23 09:56:02 +00:00
commit d37de6d304
73 changed files with 10954 additions and 0 deletions

13
vitest.config.ts Normal file
View File

@ -0,0 +1,13 @@
/// <reference types="vitest" />
import { getViteConfig } from 'astro/config'
// import { configDefaults } from 'vitest/config'
export default getViteConfig({
test: {
include: [
'./tests/**.ts'
]
/* for example, use global to avoid globals imports (describe, test, expect): */
// globals: true,
},
});