- Add GoManager service for downloading and managing Go versions - Implement Go version detection and installation - Add GoManager Vue component with version selection UI - Update main process to handle Go-related IPC calls - Add Jest testing configuration and GoManager unit tests - Update service store to include Go management - Add routing for Go manager page - Include Kiro specs and steering documentation
16 lines
391 B
JavaScript
16 lines
391 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
roots: ['<rootDir>/electron'],
|
|
testMatch: ['**/__tests__/**/*.test.ts'],
|
|
collectCoverageFrom: [
|
|
'electron/services/**/*.ts',
|
|
'!electron/services/**/*.test.ts',
|
|
'!electron/services/__tests__/**'
|
|
],
|
|
moduleFileExtensions: ['ts', 'js'],
|
|
transform: {
|
|
'^.+\\.ts$': 'ts-jest'
|
|
},
|
|
testTimeout: 30000
|
|
} |