當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript power-assert類代碼示例

本文整理匯總了TypeScript中power-assert的典型用法代碼示例。如果您正苦於以下問題:TypeScript power-assert類的具體用法?TypeScript power-assert怎麽用?TypeScript power-assert使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了power-assert類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: it

 it ('add cell', () => {
     var list = new List();
     list.add(10);
     assert(list.get(0) === 10);
 });
開發者ID:hiro-sun,項目名稱:typescript-template,代碼行數:5,代碼來源:list_spec.ts

示例2: glob

 glob('./.tmp/generated/**/*.md', (err, fileNames) => {
   assert(fileNames.length === 0);
   done();
 });
開發者ID:shiwano,項目名稱:typhen,代碼行數:4,代碼來源:error_test.ts

示例3: Future

 return Future(() => 1).flatMap(x => Future(() => x + 1)).promise.then(x => assert(x === 2));
開發者ID:uryyyyyyy,項目名稱:scalike-typescript,代碼行數:1,代碼來源:FutureSpec.ts

示例4: hello

		it("generate string with parameter", () => {
			let str = hello("JavaScript");
			assert(str === "Hello, JavaScript");
		});
開發者ID:typescript-ninja,項目名稱:typescript-in-definitelyland,代碼行數:4,代碼來源:indexSpec.ts

示例5: it

 it('should be return new instance', () => {
   assert(post instanceof Post)
 })
開發者ID:namikingsoft,項目名稱:snotido,代碼行數:3,代碼來源:Post.spec.ts

示例6: assert

 c.once('shiba:return-lint-rule-url', (_: any, url: string) => {
     assert(url.indexOf('http') === 0);
     done();
 });
開發者ID:WondermSwift,項目名稱:Shiba,代碼行數:4,代碼來源:linter_test.ts

示例7: it

 it(`extracts "endpoint" from ${name}`, () => {
     assert(GitHubApi.extractEndpoint(url) === "https://api.github.com");
 });
開發者ID:bitjourney,項目名稱:ci-npm-update,代碼行數:3,代碼來源:github.test.ts

示例8: assert

 }, done, (x) => {
   assert(x === 3)
   done()
 })
開發者ID:TylorS,項目名稱:tempest,代碼行數:4,代碼來源:index.ts


注:本文中的power-assert類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。