Fix prettier on all files

This commit is contained in:
2019-08-03 20:40:07 +05:30
parent feee690b48
commit 67206dfe41
24 changed files with 164 additions and 144 deletions
+9 -9
View File
@@ -1,12 +1,12 @@
module.exports = {
collectCoverage: true,
collectCoverageFrom: ['src/*.{ts,tsx}'],
moduleFileExtensions: ['ts', 'tsx', 'js', 'json'],
preset: 'ts-jest',
collectCoverageFrom: ["src/*.{ts,tsx}"],
moduleFileExtensions: ["ts", "tsx", "js", "json"],
preset: "ts-jest",
rootDir: process.cwd(),
roots: ['<rootDir>/test'],
setupFiles: ['<rootDir>/scripts/jest/setupEnvironment.ts'],
setupFilesAfterEnv: ['<rootDir>/scripts/jest/setupJest.ts'],
testMatch: ['<rootDir>/test/*.spec.ts?(x)'],
transform: { '^.+\\.(js|tsx?)$': 'ts-jest' }
}
roots: ["<rootDir>/test"],
setupFiles: ["<rootDir>/scripts/jest/setupEnvironment.ts"],
setupFilesAfterEnv: ["<rootDir>/scripts/jest/setupJest.ts"],
testMatch: ["<rootDir>/test/*.spec.ts?(x)"],
transform: { "^.+\\.(js|tsx?)$": "ts-jest" }
};