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"
|
"tsBuildInfoFile": "dist/tsconfig.tsbuildinfo"
|
||||||
},
|
},
|
||||||
"include": ["**/*.js", "**/*.ts"],
|
"include": ["src/**/*"],
|
||||||
"exclude": [
|
"exclude": ["**/*.spec.ts", "**/*.spec.js", "__mocks__", "src/tests"]
|
||||||
"node_modules",
|
|
||||||
"dist",
|
|
||||||
"**/*.spec.ts",
|
|
||||||
"**/*.spec.js",
|
|
||||||
"__mocks__",
|
|
||||||
"src/tests"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
{
|
{
|
||||||
"extends": "./tsconfig.build.json",
|
"extends": "./tsconfig.build.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"baseUrl": "..",
|
|
||||||
"rootDir": "src",
|
|
||||||
"composite": true,
|
"composite": true,
|
||||||
"types": ["node", "jest"]
|
"types": ["node", "jest"]
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue