Current state: - Unified augmentation system to BrainyAugmentation interface - Changed methods to specific noun/verb naming (addNoun, getNoun, etc) - Made old methods private - Combined getNouns into single unified method - Neural API exists and is complete - Triple Intelligence uses correct Brainy operators (not MongoDB) Issues identified: - Documentation incorrectly shows MongoDB operators (code is correct) - Need to ensure all features are properly exposed - Need to verify nothing was lost in simplification This commit serves as a rollback point before applying fixes.
18 lines
No EOL
381 B
TypeScript
18 lines
No EOL
381 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
setupFiles: ['./tests/setup.ts'],
|
|
testTimeout: 30000,
|
|
hookTimeout: 30000,
|
|
environment: 'node',
|
|
include: ['tests/**/*.{test,spec}.{js,ts}'],
|
|
exclude: [
|
|
'node_modules/**',
|
|
'dist/**',
|
|
'scripts/**'
|
|
],
|
|
reporters: ['default']
|
|
}
|
|
}) |