本文整理匯總了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();
});
示例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'});
示例3: it
it(`${file} has the expected ${tag} ${content}`, (): void => {
assert.fileContent(file, content);
});