本文整理汇总了TypeScript中assert.ok函数的典型用法代码示例。如果您正苦于以下问题:TypeScript ok函数的具体用法?TypeScript ok怎么用?TypeScript ok使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了ok函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: it
it(`verifies that 'Go To Definition' works`, async function () {
await common.openFirstMatchFile('app.js');
await js.goToExpressDefinition();
await app.wait();
assert.ok(await common.getTab('index.d.ts'), 'Tab opened when navigating to definition is not as expected.');
});
开发者ID:naturtle,项目名称:vscode,代码行数:6,代码来源:javascript.ts
示例2: ok
.catch((err: HTTPError) => {
ok(err instanceof HTTPError);
equal(err.statusCode, 404);
});
开发者ID:nkjm,项目名称:line-bot-sdk-nodejs,代码行数:4,代码来源:http.spec.ts
示例3:
let b = commands.executeCommand('vscode.diff', Uri.parse('sc:a'), Uri.parse('sc:b')).then(value => {
assert.ok(value === void 0);
registration.dispose();
});
开发者ID:DiLRandI,项目名称:vscode,代码行数:4,代码来源:commands.test.ts
示例4: assertTextAreaState
function assertTextAreaState(actual: TextAreaState, value: string, selectionStart: number, selectionEnd: number): void {
let desired = new TextAreaState(value, selectionStart, selectionEnd, null, null);
assert.ok(equalsTextAreaState(desired, actual), desired.toString() + ' == ' + actual.toString());
}
开发者ID:AlexxNica,项目名称:sqlopsstudio,代码行数:4,代码来源:textAreaState.test.ts
示例5: test
test('#7013 - input without options', function () {
const source = new CancellationTokenSource();
let p = window.showInputBox(undefined, source.token);
assert.ok(typeof p === 'object');
source.dispose();
});
开发者ID:DonJayamanne,项目名称:vscode,代码行数:6,代码来源:window.test.ts
示例6: reprinter
var reprintedLines = reprinter(function() {
assert.ok(false, "should not have called print function");
});
开发者ID:benjamn,项目名称:recast,代码行数:3,代码来源:patcher.ts
示例7:
$trySaveDocument(uri: URI) {
assert.ok(!saved);
saved = uri;
return Promise.resolve(true);
}
开发者ID:VishalMadhvani,项目名称:vscode,代码行数:5,代码来源:extHostDocumentData.test.ts
示例8:
let noTokens = (lineStream) => {
assert.equal(lineStream.pos(), 0);
assert.ok(lineStream.eos());
};
开发者ID:asotog,项目名称:vscode,代码行数:4,代码来源:lineStream.test.ts
注:本文中的assert.ok函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论