當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。