1
0
Fork 0
mirror of synced 2026-06-05 17:18:19 +00:00
harden-runner/jest.config.ts
Varun Sharma ea8b747819
Publish test results (#363)
* Publish test results

* Update test.yml

* Update test.yml

* Update test.yml

* Update test.yml
2023-12-07 12:09:35 -08:00

9 lines
246 B
TypeScript

/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
export default {
preset: "ts-jest",
testEnvironment: "node",
reporters: [
"default",
["jest-junit", { outputDirectory: "reports", outputName: "report.xml" }],
],
};