cache/jest.config.js

24 lines
739 B
JavaScript
Raw Permalink Normal View History

2019-11-12 22:48:02 +01:00
require("nock").disableNetConnect();
2019-10-30 19:48:49 +01:00
module.exports = {
2019-11-12 22:48:02 +01:00
clearMocks: true,
moduleFileExtensions: ["js", "ts"],
testEnvironment: "node",
testMatch: ["**/*.test.ts"],
testRunner: "jest-circus/runner",
transform: {
"^.+\\.ts$": "ts-jest"
},
verbose: true
};
2019-11-12 22:48:02 +01:00
const processStdoutWrite = process.stdout.write.bind(process.stdout);
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
process.stdout.write = (str, encoding, cb) => {
2019-11-12 22:48:02 +01:00
// Core library will directly call process.stdout.write for commands
// We don't want :: commands to be executed by the runner during tests
2022-01-31 07:36:04 +01:00
if (!String(str).match(/^::/)) {
2019-11-12 22:48:02 +01:00
return processStdoutWrite(str, encoding, cb);
}
};