approvals
Version:
Approval Tests Library - Capturing Human Intelligence
24 lines (23 loc) • 525 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
preset: "ts-jest",
testEnvironment: "node",
testMatch: [
"**/__tests__/**/*.?(m)js?(x)",
"**/?(*.)+(spec|test).?(m)js?(x)",
],
transform: {},
reporters: [
"default",
[
"jest-junit",
{
outputDirectory: "./test-reports/",
outputName: "jest-test-results.xml",
},
],
],
// begin-snippet: jest_config_setup
globalSetup: "./test/Providers/Jest/JestGlobalSetup.mjs",
// end-snippet
};