Added e2e tests for filewatcher
Some checks failed
Docker Image CI / build (push) Has been cancelled

This commit is contained in:
Rishi Ghan
2026-04-15 12:35:25 -04:00
parent c4cf233053
commit 664da47ea2
5 changed files with 1087 additions and 1 deletions

View File

@@ -101,6 +101,7 @@
"jest": {
"coverageDirectory": "<rootDir>/coverage",
"testEnvironment": "node",
"testTimeout": 30000,
"moduleFileExtensions": [
"ts",
"tsx",
@@ -112,9 +113,16 @@
"testMatch": [
"**/*.spec.(ts|js)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.ts"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
"tsconfig": "tsconfig.json"
}
}
}