24cd9cef53
- uni-app Vue3 frontend with dark glassmorphism theme - 5 AI dimensions: Origin / Development / Current / Learning / Trend - AI Chat system prompt updated from geometry to AI - 23 AI knowledge articles initialized in DB - Trend API + cron job for daily news - Product pricing (Pro ¥19.9, VIP ¥39.9) - Pinia stores + API utilities - AGENTS.md documentation
14 lines
340 B
JavaScript
Executable File
14 lines
340 B
JavaScript
Executable File
module.exports = {
|
|
testEnvironment: 'node',
|
|
testMatch: ['**/tests/**/*.test.js'],
|
|
collectCoverageFrom: [
|
|
'src/**/*.js',
|
|
'!src/index.js'
|
|
],
|
|
coverageDirectory: 'coverage',
|
|
coverageReporters: ['text', 'lcov', 'html'],
|
|
testTimeout: 30000,
|
|
setupFilesAfterEnv: ['<rootDir>/tests/setup.js'],
|
|
verbose: true
|
|
}
|