本文整理汇总了TypeScript中chalk.bgWhite.cyan方法的典型用法代码示例。如果您正苦于以下问题:TypeScript bgWhite.cyan方法的具体用法?TypeScript bgWhite.cyan怎么用?TypeScript bgWhite.cyan使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类chalk.bgWhite
的用法示例。
在下文中一共展示了bgWhite.cyan方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: debugLog
client.__createSession_step2(session, (err: Error | null, session1?: ClientSessionImpl) => {
debugLog(chalk.bgWhite.cyan(" => creating a new session (based on old session data).... Done"));
if (!err && session1) {
newSession = session1;
assert(session === session1, "session should have been recycled");
}
innerCallback(err ? err : undefined);
});
示例2: file_line
/**
* file_line return a 51 caracter string
* @param filename
* @param callerLine
*/
function file_line(mode: "E" | "D", filename: string, callerLine: number): string {
const d = (new Date()).toISOString().substr(11);
if (mode === "D") {
return chalk.bgWhite.cyan(w(d, 14) + ":" + w(filename, 30) + ":" + w(callerLine.toString(), 5));
} else {
return chalk.bgRed.white(w(d, 14) + ":" + w(filename, 30) + ":" + w(callerLine.toString(), 5));
}
}
示例3: it
it("should create a boiler system", async () => {
const context = SessionContext.defaultContext;
const boilerType = createBoilerType(addressSpace);
boilerType.getNotifiers().length.should.eql(3);
boilerType.getEventSources().length.should.eql(1);
const boiler = makeBoiler(addressSpace, {
browseName: "Boiler#1",
organizedBy: addressSpace.rootFolder
});
boiler.pipeX001.browseName.toString().should.eql("1:PipeX001");
boiler.pipeX002.browseName.toString().should.eql("1:PipeX002");
boiler.drumX001.browseName.toString().should.eql("1:DrumX001");
boiler.simulation.browseName.toString().should.eql("1:Simulation");
// xx boiler.pipeX001.displayName.text.toString().should.eql("Pipe1001");
boiler.pipeX001.modellingRule!.should.eql("Mandatory");
boiler.pipeX002.modellingRule!.should.eql("Mandatory");
boiler.drumX001.modellingRule!.should.eql("Mandatory");
boiler.simulation.modellingRule!.should.eql("Mandatory");
boiler.getNotifiers().length.should.eql(3);
boiler.getEventSources().length.should.eql(1);
boiler.getNotifiers().map((x: BaseNode) => {
return x.browseName.name!.toString();
}).join(" ").should.eql("PipeX001 DrumX001 PipeX002");
// xx boiler.pipeX001.notifierOf.nodeId.toString().should.eql(boiler.nodeId.toString());
// xx boiler.pipeX001.notifierOf.nodeId.toString().should.eql(boiler.nodeId.toString());
const haltMethod = boiler.simulation.getMethodByName("Halt")!;
const resetMethod = boiler.simulation.getMethodByName("Reset")!;
const startMethod = boiler.simulation.getMethodByName("Start")!;
const suspendMethod = boiler.simulation.getMethodByName("Suspend")!;
// expecting initial state to be Ready
haltMethod.getExecutableFlag(context).should.eql(true);
resetMethod.getExecutableFlag(context).should.eql(false);
startMethod.getExecutableFlag(context).should.eql(true);
suspendMethod.getExecutableFlag(context).should.eql(false);
const callMethodResponse = await haltMethod.execute([], context);
if (doDebug) {
console.log(chalk.bgWhite.cyan(" Halt has been called"), callMethodResponse.statusCode!.toString());
}
haltMethod.getExecutableFlag(context).should.eql(false);
resetMethod.getExecutableFlag(context).should.eql(true);
startMethod.getExecutableFlag(context).should.eql(false);
suspendMethod.getExecutableFlag(context).should.eql(false);
const callMethodResponse1 = await resetMethod.execute([], context);
if (doDebug) {
console.log(chalk.bgWhite.cyan(" resetMethod has been called"), callMethodResponse1.statusCode!.toString());
}
haltMethod.getExecutableFlag(context).should.eql(true);
resetMethod.getExecutableFlag(context).should.eql(false);
startMethod.getExecutableFlag(context).should.eql(true);
suspendMethod.getExecutableFlag(context).should.eql(false);
const callMethodResponse2 = await startMethod.execute([], context);
if (doDebug) {
console.log(chalk.bgWhite.cyan(" startMethod has been called"), callMethodResponse2.statusCode!.toString());
}
haltMethod.getExecutableFlag(context).should.eql(true);
resetMethod.getExecutableFlag(context).should.eql(true);
startMethod.getExecutableFlag(context).should.eql(false);
suspendMethod.getExecutableFlag(context).should.eql(true);
const callMethodResponse3 = await suspendMethod.execute([], context);
if (doDebug) {
console.log(chalk.bgWhite.cyan("suspendMethod has been called"), callMethodResponse3.statusCode!.toString());
}
haltMethod.getExecutableFlag(context).should.eql(true);
resetMethod.getExecutableFlag(context).should.eql(true);
startMethod.getExecutableFlag(context).should.eql(true);
suspendMethod.getExecutableFlag(context).should.eql(false);
});