Skip to content

Commit 07cc3a5

Browse files
CCM-12875: Fixed prettier issue
1 parent e3d581b commit 07cc3a5

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

lambdas/pdm-mock-api/jest.config.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
import type { Config } from "jest";
1+
import type { Config } from 'jest';
22

33
const config: Config = {
4-
preset: "ts-jest",
5-
testEnvironment: "node",
4+
preset: 'ts-jest',
5+
testEnvironment: 'node',
66

7-
roots: ["<rootDir>/src"],
7+
roots: ['<rootDir>/src'],
88

9-
testMatch: ["**/__tests__/**/*.test.ts"],
9+
testMatch: ['**/__tests__/**/*.test.ts'],
1010

1111
collectCoverageFrom: [
12-
"src/**/*.ts",
13-
"!src/**/__tests__/**",
14-
"!src/**/*.test.ts",
12+
'src/**/*.ts',
13+
'!src/**/__tests__/**',
14+
'!src/**/*.test.ts',
1515
],
1616

1717
coverageThreshold: {
@@ -24,10 +24,10 @@ const config: Config = {
2424
},
2525

2626
moduleNameMapper: {
27-
"^handlers$": "<rootDir>/src/handlers",
28-
"^utils$": "<rootDir>/src/utils",
29-
"^container$": "<rootDir>/src/container",
30-
"^authenticator$": "<rootDir>/src/authenticator",
27+
'^handlers$': '<rootDir>/src/handlers',
28+
'^utils$': '<rootDir>/src/utils',
29+
'^container$': '<rootDir>/src/container',
30+
'^authenticator$': '<rootDir>/src/authenticator',
3131
},
3232
};
3333

0 commit comments

Comments
 (0)