참고소스 수정본
This commit is contained in:
25
참고/firecrawl-main/apps/api/jest.config.ts
Normal file
25
참고/firecrawl-main/apps/api/jest.config.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import { createDefaultEsmPreset, type JestConfigWithTsJest } from "ts-jest";
|
||||
|
||||
const config: JestConfigWithTsJest = {
|
||||
...createDefaultEsmPreset(),
|
||||
verbose: true,
|
||||
testPathIgnorePatterns: ["<rootDir>/dist/"],
|
||||
forceExit: true,
|
||||
detectOpenHandles: true,
|
||||
openHandlesTimeout: 120000,
|
||||
watchAll: false,
|
||||
reporters: [
|
||||
"default",
|
||||
[
|
||||
"jest-junit",
|
||||
{
|
||||
outputDirectory: "<rootDir>/test-results",
|
||||
outputName: "junit.xml",
|
||||
addFileAttribute: true,
|
||||
suiteNameTemplate: "{filepath}",
|
||||
},
|
||||
],
|
||||
],
|
||||
};
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user