Run jest
This commit is contained in:
parent
a72b80ad4d
commit
94a93a5bb6
|
@ -0,0 +1,11 @@
|
|||
declare const _default: {
|
||||
preset: string;
|
||||
testEnvironment: string;
|
||||
transform: {
|
||||
"^.+\\.ts?$": string;
|
||||
};
|
||||
moduleNameMapper: {
|
||||
"@budibase/types": string;
|
||||
};
|
||||
};
|
||||
export default _default;
|
|
@ -18,13 +18,6 @@
|
|||
},
|
||||
"tsBuildInfoFile": "dist/tsconfig.tsbuildinfo"
|
||||
},
|
||||
"include": ["**/*.js", "**/*.ts"],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"dist",
|
||||
"**/*.spec.ts",
|
||||
"**/*.spec.js",
|
||||
"__mocks__",
|
||||
"src/tests"
|
||||
]
|
||||
"include": ["src/**/*"],
|
||||
"exclude": ["**/*.spec.ts", "**/*.spec.js", "__mocks__", "src/tests"]
|
||||
}
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
{
|
||||
"extends": "./tsconfig.build.json",
|
||||
"compilerOptions": {
|
||||
"baseUrl": "..",
|
||||
"rootDir": "src",
|
||||
"composite": true,
|
||||
"types": ["node", "jest"]
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue