mirror of
https://github.com/samvallad33/vestige.git
synced 2026-04-24 16:26:22 +02:00
FSRS-6 spaced repetition, spreading activation, synaptic tagging, hippocampal indexing, and 130 years of memory research. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
256 B
TypeScript
10 lines
256 B
TypeScript
import { defineConfig } from '@rstest/core';
|
|
|
|
export default defineConfig({
|
|
testMatch: ['**/*.test.ts'],
|
|
setupFiles: ['./src/__tests__/setup.ts'],
|
|
coverage: {
|
|
include: ['src/**/*.ts'],
|
|
exclude: ['src/__tests__/**', 'src/**/*.d.ts'],
|
|
},
|
|
});
|