Skip to content

Commit b39e15e

Browse files
committed
feat: adding generic test files and necessary packages
1 parent f385fa4 commit b39e15e

8 files changed

+5761
-2058
lines changed

package-lock.json

+5,715-2,056
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+12-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,19 @@
2727
"lint": "eslint '{src,tests,scripts,benches}/**/*.{js,mjs,ts,mts,jsx,tsx}'",
2828
"lintfix": "eslint '{src,tests,scripts,benches}/**/*.{js,mjs,ts,mts,jsx,tsx}' --fix",
2929
"lint-shell": "find ./src ./tests ./scripts -type f -regextype posix-extended -regex '.*\\.(sh)' -exec shellcheck {} +",
30-
"docs": "shx rm -rf ./docs && typedoc --gitRevision master --tsconfig ./tsconfig.build.json --out ./docs src"
31-
},
30+
"docs": "shx rm -rf ./docs && typedoc --gitRevision master --tsconfig ./tsconfig.build.json --out ./docs src",
31+
"test": "node ./scripts/test.mjs"
32+
},
3233
"devDependencies": {
34+
"ts-node": "^10.9.1",
35+
"tsconfig-paths": "^3.9.0",
36+
"@swc/jest": "^0.2.26",
37+
"@types/jest": "^28.1.3",
38+
"jest": "^28.1.1",
39+
"jest-extended": "^3.0.1",
40+
"jest-junit": "^14.0.0",
41+
"jest-mock-process": "^2.0.0",
42+
"ts-jest": "^28.0.5",
3343
"@eslint/compat": "^1.2.5",
3444
"@swc/core": "1.3.82",
3545
"@types/node": "^20.5.7",

tests/global.d.ts

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/* eslint-disable no-var */
2+
3+
/// <reference types="jest-extended" />
4+
5+
/**
6+
* Follows the globals in jest.config.ts
7+
* @module
8+
*/
9+
declare var projectDir: string;
10+
declare var testDir: string;
11+
declare var defaultTimeout: number;
12+
declare var maxTimeout: number;

tests/globalSetup.ts

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
async function setup() {
2+
// eslint-disable-next-line no-console
3+
console.log('\nGLOBAL SETUP');
4+
}
5+
6+
export default setup;

tests/globalTeardown.ts

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
async function teardown() {
2+
// eslint-disable-next-line no-console
3+
console.log('GLOBAL TEARDOWN');
4+
}
5+
6+
export default teardown;

tests/index.test.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
describe('index', () => {
3+
test('some arbitrary test', () => {
4+
});
5+
});

tests/setup.ts

Whitespace-only changes.

tests/setupAfterEnv.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import jest from "@jest/globals"
2+
// Default timeout per test
3+
// some tests may take longer in which case you should specify the timeout
4+
// explicitly for each test by using the third parameter of test function
5+
jest.setTimeout(globalThis.defaultTimeout);

0 commit comments

Comments
 (0)