mirror of
https://github.com/tompro/sattle.git
synced 2026-08-27 07:15:59 +00:00
12 lines
381 B
TypeScript
12 lines
381 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
// the tested modules are pure crypto/codec/protocol logic - node's own
|
|
// WebCrypto (crypto.subtle) and fetch cover everything they need, no
|
|
// jsdom. The ops suite spins real mock-mint HTTP servers on loopback.
|
|
environment: 'node',
|
|
include: ['src/**/*.test.ts'],
|
|
},
|
|
});
|