本文整理汇总了TypeScript中mock-fs.fs函数的典型用法代码示例。如果您正苦于以下问题:TypeScript fs函数的具体用法?TypeScript fs怎么用?TypeScript fs使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了fs函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: setup
setup(() => {
// Configure all the dependencies we'll use in our tests
fileSystem = new FileSystem({ fs: mockFs.fs({}) });
adb = new AdbSimulator(fileSystem);
simulatedAVDManager = new AVDManager(adb);
reactNative = new ReactNative022(adb, fileSystem);
fakeExtensionMessageSender = new FakeExtensionMessageSender();
androidPlatform = createAndroidPlatform(genericRunOptions);
// Create a React-Native project we'll use in our tests
return reactNative.createProject(projectRoot, applicationName);
});
开发者ID:CarlosVV,项目名称:vscode-react-native,代码行数:12,代码来源:androidPlatform.test.ts
示例2: beforeEach
beforeEach(()=>{
const mock = mockFs.fs({
'/proj1': {
'myst.json': `{
"data": "data/"
}`,
'data': {
'foo.yaml': `
foobar: 吉野家
foonum: 10`,
'bar.json': '{"welcome": "to my bar"}',
},
},
});
fs.mount(mnt, mock);
});
开发者ID:uhyo,项目名称:my-static,代码行数:16,代码来源:basic.spec.ts
示例3: beforeEach
beforeEach(()=>{
const mock = mockFs.fs({
'/proj1': {
'myst.json': `{
"rootDir": "src",
"outDir": "../out"
}`,
'layout': {
'main.dust': `<div>foo {+body}body{/body} bar</div>`,
},
'src': {
'index.dust': `{>"$PROJ/layout/main.dust"/}{<body}aiu{/body}`,
'index2.dust': `{>"$ROOT/../layout/main.dust"/}`,
},
},
});
fs.mount(mnt, mock);
});
开发者ID:uhyo,项目名称:my-static,代码行数:18,代码来源:build.spec.ts
示例4: e
function e() {
mock({
'some/dir': mock.directory({
mode: parseInt("0755", 8),
items: {
file1: 'file one content',
file2: new Buffer([8, 6, 7, 5, 3, 0, 9])
}
})
});
}
function f() {
mock({
'some/dir': {
'regular-file': 'file contents',
'a-symlink': mock.symlink({
path: 'regular-file'
})
}
});
}
var mockedFS = mock.fs({
'/file': 'blah'
});
if (mockedFS.readFileSync('/file', { encoding: 'utf8' }) === 'blah') {
console.log('woo');
}
开发者ID:ClearboxSystems,项目名称:DefinitelyTyped,代码行数:30,代码来源:mock-fs-tests.ts
示例5:
let nodeFileStorageInitializer = () => {
mockedFs = mockFs.fs({
'fileStorage': {}
});
};
开发者ID:csantero,项目名称:Exceptionless.JavaScript,代码行数:5,代码来源:Storage-spec.ts
注:本文中的mock-fs.fs函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论