//import { Tree } from '@angular-devkit/schematics'; //import { SchematicTestRunner, UnitTestTree } from '@angular-devkit/schematics/testing'; //import * as path from 'path'; describe('ssr', () => { //const collectionPath = path.join(__dirname, '../collection.json'); // const defaultOptions: any = { // project: 'bar', // }; // const workspaceOptions: any = { // name: 'workspace', // newProjectRoot: 'projects', // version: '6.0.0', // }; // const appOptions: any = { // name: 'bar', // inlineStyle: false, // inlineTemplate: false, // routing: false, // style: 'css', // skipTests: false, // skipPackageJson: false, // }; // const initialWorkspaceAppOptions: any = { // name: 'workspace', // projectRoot: '', // inlineStyle: false, // inlineTemplate: false, // routing: false, // style: 'css', // skipTests: false, // skipPackageJson: false, // }; // let appTree: UnitTestTree; // const angularRunner = new SchematicTestRunner( '@schematics/angular', collectionPath); // const ssrRunner = new SchematicTestRunner( 'schematics', collectionPath); beforeEach(() => { // appTree = angularRunner.runSchematic('workspace', workspaceOptions); // appTree = angularRunner.runSchematic('application', initialWorkspaceAppOptions, appTree); // appTree = angularRunner.runSchematic('application', appOptions, appTree); }); it('should return true', () => { expect(true).toEqual(true); }); });