本文整理汇总了TypeScript中intercept-stdout类的典型用法代码示例。如果您正苦于以下问题:TypeScript intercept-stdout类的具体用法?TypeScript intercept-stdout怎么用?TypeScript intercept-stdout使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了intercept-stdout类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it("can write json to stdout", async () => {
const input = `
[B]: test
<A>: test
- [B]
+ <C>: test
`;
const request: IArgdownRequest = {
input,
process: ["parse-input", "build-model", "export-json", "stdout-json"],
logLevel: "error"
};
let capturedText = "";
var unhook_intercept = intercept(function(text: string) {
capturedText += text;
return "";
});
await argdown.runAsync(request);
unhook_intercept();
expect(capturedText).to.not.equal("");
expect(capturedText.startsWith(`{`)).to.be.true;
expect(capturedText.endsWith(`}`)).to.be.true;
});
示例2: stdout
it('Compare output', () => {
let actual = '';
let message = 'test';
let intercept = stdout(output => actual += output);
Log.info(message);
intercept();
assert.equal(actual, `${colors.green('>>')} ${message}\n`);
});