Skip to content

Commit

Permalink
corrige arquivo de configuracao teste e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
HenriqueAmorim20 committed Nov 7, 2023
1 parent 4055a82 commit 93d0424
Showing 1 changed file with 23 additions and 6 deletions.
29 changes: 23 additions & 6 deletions e2e/jest-e2e.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"moduleFileExtensions": ["ts", "tsx", "js", "json"],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
Expand All @@ -11,10 +16,22 @@
"!**/node_modules/**",
"!**/vendor/**",
"!src/**/main.{js,jsx,tsx,ts}",
"!src/**/ormconfig.{js,jsx,tsx,ts}"
"!src/**/migrations.{js,jsx,tsx,ts}",
"!src/**/ormconfig.{js,jsx,tsx,ts}",
"!src/migration/**",
"!src/shared/**",
"!src/config/**"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/src/"
],
"coverageReporters": [
"json",
"lcov"
],
"testPathIgnorePatterns": ["/node_modules/", "/src/"],
"coverageReporters": ["json", "lcov"],
"testEnvironment": "node",
"coveragePathIgnorePatterns": [".spec.ts$"]
}
"coveragePathIgnorePatterns": [
".spec.ts$"
]
}

0 comments on commit 93d0424

Please sign in to comment.