mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-09-27 17:58:47 +00:00
16 lines
372 B
TypeScript
16 lines
372 B
TypeScript
import {defineConfig} from "vitest/config"
|
|
import path from "path"
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
testTimeout: 10000,
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
"simplex-chat": path.resolve(__dirname, "test/__mocks__/simplex-chat.js"),
|
|
"@simplex-chat/types": path.resolve(__dirname, "test/__mocks__/simplex-chat-types.js"),
|
|
},
|
|
},
|
|
})
|