2019-11-12 22:48:02 +01:00
|
|
|
require("nock").disableNetConnect();
|
2019-11-06 19:41:45 +01:00
|
|
|
|
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-10-31 20:05:59 +01:00
|
|
|
|
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
|
2019-10-31 20:05:59 +01:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
};
|