本文整理匯總了TypeScript中@angular-devkit/schematics/testing.UnitTestTree.branch方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript UnitTestTree.branch方法的具體用法?TypeScript UnitTestTree.branch怎麽用?TypeScript UnitTestTree.branch使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類@angular-devkit/schematics/testing.UnitTestTree
的用法示例。
在下文中一共展示了UnitTestTree.branch方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: it
it(`should create browserslist file if it doesn't exist`, () => {
tree.delete('/browserslist');
const tree2 = schematicRunner.runSchematic('migration-07', {}, tree.branch());
expect(tree2.exists('/browserslist')).toBe(true);
expect(tree2.readContent('/browserslist'))
.toContain('Support for Googlebot');
});
示例2: it
it('should work as expected', async () => {
const polyfillPath = '/src/polyfills.ts';
tree.overwrite(polyfillPath, oldPolyfills);
const tree2 = await schematicRunner.runSchematicAsync('migration-03', {}, tree.branch())
.toPromise();
expect(tree2.readContent(polyfillPath)).not.toMatch(/import .*es7.*reflect.*;/);
});
示例3: it
it('should work as expected', async () => {
tree.overwrite('/package.json', oldPkg);
const tree2 = await schematicRunner.runSchematicAsync('migration-06', {}, tree.branch())
.toPromise();
const content = tree2.readContent('/package.json');
const pkg = JSON.parse(content);
expect(pkg.devDependencies['@angular-devkit/build-ng-packagr'])
.toBe(latestVersions.DevkitBuildNgPackagr);
});
示例4: it
it('should work as expected', async () => {
const tsConfigPath = '/tsconfig.json';
tree.overwrite(tsConfigPath, oldTsConfig);
const tree2 = await schematicRunner.runSchematicAsync('migration-04', {}, tree.branch())
.toPromise();
const { importHelpers } = JSON.parse(tree2.readContent(tsConfigPath)).compilerOptions;
expect(importHelpers).toBe(true);
const content = tree2.readContent('/package.json');
const pkg = JSON.parse(content);
expect(pkg.dependencies.tslib).toBeDefined();
});