Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/lib/test-utils.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
22 lines (22 sloc)
843 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
Object.defineProperty(exports, "__esModule", { value: true }); | |
function silenceDebugOutput(test) { | |
const typedTest = test; | |
typedTest.beforeEach(t => { | |
const processStdoutWrite = process.stdout.write.bind(process.stdout); | |
t.context.write = processStdoutWrite; | |
process.stdout.write = (str, encoding, cb) => { | |
// Core library will directly call process.stdout.write for commands | |
// We don't want :: commands to be executed by the runner during tests | |
if (!str.match(/^::/)) { | |
processStdoutWrite(str, encoding, cb); | |
} | |
return true; | |
}; | |
}); | |
typedTest.afterEach(t => { | |
process.stdout.write = t.context.write; | |
}); | |
} | |
exports.silenceDebugOutput = silenceDebugOutput; | |
//# sourceMappingURL=test-utils.js.map |