Skip to content

Commit c789c08

Browse files
committed
revert tests
1 parent 9404174 commit c789c08

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Use `npm run integration` in order to run the integration tests. If you have the
6666

6767
#### TypeScript Types tests
6868

69-
Those tests are located in [/types/tests](/types/tests) and are responsible for ensure types generated for each class is behaving as expected.
69+
Those tests are located in [/types/tests.ts](/types/tests.ts) and are responsible for ensure types generated for each class is behaving as expected.
7070

7171
Types must be generated using `npm run build:types` and should not be manually changed. These types are `.d.ts` files located in [/types](/types).
7272

File renamed without changes.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
"posttest:mongodb": "mongodb-runner stop --all",
107107
"lint": "eslint --cache src/ integration/",
108108
"lint:fix": "eslint --fix --cache src/ integration/",
109-
"test:types": "eslint --cache types/tests/ -c ./types/tests/eslint.config.mjs",
109+
"test:types": "eslint --cache types/tests.ts -c eslint.config.test.mjs",
110110
"watch": "cross-env PARSE_BUILD=${PARSE_BUILD} gulp watch",
111111
"watch:browser": "cross-env PARSE_BUILD=browser npm run watch",
112112
"watch:node": "cross-env PARSE_BUILD=node npm run watch",
File renamed without changes.

types/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
}
2121
},
2222
"include": [
23-
"tests/*.ts"
23+
"tests.ts"
2424
]
2525
}

0 commit comments

Comments
 (0)