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


TypeScript UnitTestTree.branch方法代碼示例

本文整理匯總了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');
 });
開發者ID:angular,項目名稱:angular-cli,代碼行數:7,代碼來源:differential-loading_spec.ts

示例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.*;/);
  });
開發者ID:DevIntent,項目名稱:angular-cli,代碼行數:8,代碼來源:polyfill-metadata_spec.ts

示例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);
  });
開發者ID:DevIntent,項目名稱:angular-cli,代碼行數:10,代碼來源:devkit-ng-packagr_spec.ts

示例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();
  });
開發者ID:DevIntent,項目名稱:angular-cli,代碼行數:13,代碼來源:typescript-helpers_spec.ts


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