chore: add full source code
This commit is contained in:
17
jest.config.js
Normal file
17
jest.config.js
Normal file
@@ -0,0 +1,17 @@
|
||||
module.exports = {
|
||||
preset: 'ts-jest',
|
||||
testEnvironment: 'node',
|
||||
testMatch: [
|
||||
'**/__tests__/(unit|e2e|integration)/**/*.test.ts'
|
||||
],
|
||||
collectCoverageFrom: [
|
||||
'src/**/*.{ts,js}',
|
||||
'!src/**/*.d.ts'
|
||||
],
|
||||
coverageDirectory: './coverage',
|
||||
coverageReporters: ['html', 'lcov', 'text-summary'],
|
||||
moduleNameMapper: {
|
||||
'^@/(.*)$': '<rootDir>/src/$1'
|
||||
},
|
||||
testTimeout: 15000
|
||||
};
|
||||
Reference in New Issue
Block a user