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


TypeScript yeoman-assert.fileContent函數代碼示例

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


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

示例1: done

 .on('end', () => {
   yoAssert.file(['bower.json']);
   yoAssert.fileContent(
       'src/foobar-app/foobar-app.html',
       'class FoobarApp extends Polymer.Element');
   done();
 });
開發者ID:abdonrd,項目名稱:polymer-cli,代碼行數:7,代碼來源:application_test.ts

示例2:

import * as assert from 'yeoman-assert';

assert.file('path');
assert.file(['path', 'path2']);

assert.noFile('path');
assert.noFile(['path', 'path2']);

assert.fileContent('file', /abc/g);
assert.fileContent(['file', 'file2'], 'abc');

assert.equalsFileContent('file', 'expectedContent');
assert.equalsFileContent([['file', 'expectedContent'], ['file2', 'expectedContent2']]);

assert.noFileContent('file', /abc/g);
assert.noFileContent(['file', 'file2'], 'abc');

assert.textEqual('value', 'expected');
assert.implement({value: 'test'}, {other: 'test2'});
assert.implement({value: 'test'}, ['test2', 'test3']);

assert.notImplement({value: 'test'}, {other: 'test2'});
assert.notImplement({value: 'test'}, ['test2', 'test3']);

assert.objectContent({value: 'test'}, {value: 'test2'});
assert.noObjectContent({value: 'test'}, {value: 'test2'});

assert.JSONFileContent('filename', {root: 'content'});
assert.jsonFileContent('filename', {root: 'content'});

assert.noJSONFileContent('filename', {root: 'content'});
開發者ID:Jeremy-F,項目名稱:DefinitelyTyped,代碼行數:31,代碼來源:yeoman-assert-tests.ts

示例3: it

 it(`${file} has the expected ${tag} ${content}`, (): void => {
   assert.fileContent(file, content);
 });
開發者ID:jlenoble,項目名稱:generator-wupjs,代碼行數:3,代碼來源:test-generator.ts


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