-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feat] - implementing tests for logger, router and server
- Loading branch information
Showing
21 changed files
with
698 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Arquivos de configuração | ||
.eslintrc | ||
.prettierrc | ||
.stylelintrc | ||
|
||
# Arquivos de teste | ||
__tests__ | ||
test/ | ||
tests/ | ||
*.test.ts | ||
*.spec.ts | ||
|
||
# Pastas e arquivos de build | ||
dist/ | ||
build/ | ||
lib/ | ||
*.log | ||
|
||
# Arquivos temporários | ||
*.tmp | ||
|
||
# Dependências locais instaladas | ||
node_modules/ | ||
|
||
# Outros arquivos que não são necessários para o pacote publicado | ||
.editorconfig | ||
.gitignore | ||
.npmrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
export const preset = "ts-jest"; | ||
export const testEnvironment = "node"; | ||
export const testMatch = ["**/__tests__/**/*.ts", "**/?(*.)+(spec|test).ts"]; | ||
/* eslint-disable no-undef */ | ||
module.exports = { | ||
preset: "ts-jest", | ||
testEnvironment: "node", | ||
testMatch: ["**/__tests__/**/*.ts", "**/?(*.)+(spec|test).ts"], | ||
}; |
Oops, something went wrong.