本文整理汇总了TypeScript中@angular-devkit/architect/testing.TestProjectHost类的典型用法代码示例。如果您正苦于以下问题:TypeScript TestProjectHost类的具体用法?TypeScript TestProjectHost怎么用?TypeScript TestProjectHost使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了TestProjectHost类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: it
it('detects the need for differential loading for IE 9-11 and ES2015', () => {
host.writeMultipleFiles({
'browserslist': 'IE 9-11',
});
const needed = isDifferentialLoadingNeeded(getSystemPath(host.root()), ScriptTarget.ES2015);
expect(needed).toBe(true);
});
开发者ID:angular,项目名称:angular-cli,代码行数:8,代码来源:differential-loading_spec.ts
示例2: expectAsync
it('builds and packages a library', async () => {
const run = await architect.scheduleTarget({ project: 'lib', target: 'build' });
await expectAsync(run.result).toBeResolvedTo(jasmine.objectContaining({ success: true }));
await run.stop();
expect(host.scopedSync().exists(normalize('./dist/lib/fesm5/lib.js'))).toBe(true);
const content = virtualFs.fileBufferToString(
host.scopedSync().read(normalize('./dist/lib/fesm5/lib.js')),
);
expect(content).toContain('lib works');
});
开发者ID:angular,项目名称:angular-cli,代码行数:13,代码来源:index_spec_large.ts
示例3: WorkspaceNodeModulesArchitectHost
beforeEach(async () => {
await host.initialize().toPromise();
const registry = new schema.CoreSchemaRegistry();
registry.addPostTransform(schema.transforms.addUndefinedDefaults);
const workspace = await experimental.workspace.Workspace.fromPath(host, host.root(), registry);
const architectHost = new TestingArchitectHost(
host.root(),
host.root(),
new WorkspaceNodeModulesArchitectHost(workspace, host.root()),
);
architect = new Architect(architectHost, registry);
});
开发者ID:angular,项目名称:angular-cli,代码行数:14,代码来源:index_spec_large.ts
示例4: map
map(() => {
const fileName = './dist/lib/fesm5/lib.js';
const content = virtualFs.fileBufferToString(
host.scopedSync().read(normalize(fileName)),
);
return content;
}),
开发者ID:angular,项目名称:angular-cli,代码行数:8,代码来源:index_spec_large.ts
示例5: tap
tap(content => {
buildNumber += 1;
switch (buildNumber) {
case 1:
expect(content).toMatch(/lib works/);
host.writeMultipleFiles(goldenValueFiles);
break;
case 2:
expect(content).toMatch(/lib update works/);
break;
default:
break;
}
}),
开发者ID:angular,项目名称:angular-cli,代码行数:15,代码来源:index_spec_large.ts
示例6: WorkspaceNodeModulesArchitectHost
export async function createArchitect(workspaceRoot: Path) {
const registry = new schema.CoreSchemaRegistry();
registry.addPostTransform(schema.transforms.addUndefinedDefaults);
const workspaceSysPath = getSystemPath(workspaceRoot);
const workspace = await experimental.workspace.Workspace.fromPath(host, host.root(), registry);
const architectHost = new TestingArchitectHost(
workspaceSysPath,
workspaceSysPath,
new WorkspaceNodeModulesArchitectHost(workspace, workspaceSysPath),
);
const architect = new Architect(architectHost, registry);
return {
workspace,
architectHost,
architect,
};
}
开发者ID:angular,项目名称:angular-cli,代码行数:19,代码来源:utils.ts
示例7: afterEach
afterEach(done => host.restore().toPromise().then(done, done.fail));
开发者ID:fmalcher,项目名称:angular-cli,代码行数:1,代码来源:index_spec_large.ts
示例8: beforeEach
beforeEach(done => host.initialize().toPromise().then(done, done.fail));
开发者ID:fmalcher,项目名称:angular-cli,代码行数:1,代码来源:index_spec_large.ts
示例9: afterEach
afterEach(() => host.restore().toPromise());
开发者ID:angular,项目名称:angular-cli,代码行数:1,代码来源:index_spec_large.ts
注:本文中的@angular-devkit/architect/testing.TestProjectHost类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论