当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript assert.fail函数代码示例

本文整理汇总了TypeScript中assert.fail函数的典型用法代码示例。如果您正苦于以下问题:TypeScript fail函数的具体用法?TypeScript fail怎么用?TypeScript fail使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了fail函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: done

 acquisition.queryUpdateWithCurrentPackage(invalidPackage, (error: Error, returnPackage: acquisitionSdk.RemotePackage | acquisitionSdk.NativeUpdateNotification) => {
     assert.fail("Should throw an error if the native implementation gave an incorrect package");
     done();
 });
开发者ID:277542952,项目名称:code-push,代码行数:4,代码来源:acquisition-sdk.ts

示例2:

			w.on("delete", path => { assert.fail(path) })
开发者ID:tpack,项目名称:utilskit,代码行数:1,代码来源:watcher.test.ts

示例3:

			}, err => assert.fail(err),
开发者ID:burhandodhy,项目名称:azuredatastudio,代码行数:1,代码来源:ipc.perf.ts

示例4:

			.then(c => assert.equal(c, 0), () => assert.fail());
开发者ID:AlexxNica,项目名称:sqlopsstudio,代码行数:1,代码来源:cache.test.ts

示例5:

 () => assert.fail('This promise should pass')
开发者ID:johaDev,项目名称:vscode-chrome-debug,代码行数:1,代码来源:utilities.test.ts

示例6:

 }, error => {
     assert.fail(error, null, 'Linter error, Output - ' + outputChannel.output);
 });
开发者ID:SongJLG,项目名称:pythonVSCode,代码行数:3,代码来源:extension.lint.test.ts

示例7:

			errorLogger: (err) => assert.fail(0, 1, 'Failed to register', err),
开发者ID:igabesz,项目名称:advanced-controllers,代码行数:1,代码来源:test-static-1.ts

示例8:

 () => { assert.fail(0, 1, 'Command should not resolve', ''); },
开发者ID:gaborv,项目名称:vscode-elm,代码行数:1,代码来源:elmUtils.test.ts


注:本文中的assert.fail函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。