mirror of
https://github.com/step-security/harden-runner.git
synced 2026-06-05 21:17:06 +00:00
* Publish test results * Update test.yml * Update test.yml * Update test.yml * Update test.yml
9 lines
246 B
TypeScript
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" }],
|
|
],
|
|
};
|