switched to yarn, and started adding tests

Added tests for process job service so far... its a start..
This commit is contained in:
iPromKnight
2024-02-08 12:46:36 +00:00
committed by iPromKnight
parent ed6b08dbc4
commit 4bc4b7958f
7 changed files with 1892 additions and 173 deletions

View File

@@ -0,0 +1,11 @@
const { pathsToModuleNameMapper } = require('ts-jest');
const { compilerOptions } = require('./tsconfig.json');
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
moduleNameMapper: pathsToModuleNameMapper(compilerOptions.paths, { prefix: '<rootDir>/src/' }),
modulePaths: [
'<rootDir>'
],
};