mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-04 17:46:13 +00:00
11 lines
178 B
TypeScript
11 lines
178 B
TypeScript
import {defineConfig} from "vitest/config"
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["bot.test.ts"],
|
|
typecheck: {
|
|
include: ["bot.test.ts"],
|
|
},
|
|
},
|
|
})
|