2018-11-14 12:34:49 -08:00

75 lines
2.5 KiB
TypeScript

/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { SchematicTestRunner } from '@angular-devkit/schematics/testing';
import { latestVersions } from '../utility/latest-versions';
import { Schema as WorkspaceOptions } from './schema';
describe('Workspace Schematic', () => {
const schematicRunner = new SchematicTestRunner(
'@schematics/angular',
require.resolve('../collection.json'),
);
const defaultOptions: WorkspaceOptions = {
name: 'foo',
version: '6.0.0',
};
it('should create all files of a workspace', () => {
const options = { ...defaultOptions };
const tree = schematicRunner.runSchematic('workspace', options);
const files = tree.files;
expect(files).toEqual(jasmine.arrayContaining([
'/.editorconfig',
'/angular.json',
'/.gitignore',
'/package.json',
'/README.md',
'/tsconfig.json',
'/tslint.json',
]));
});
it('should set the name in package.json', () => {
const tree = schematicRunner.runSchematic('workspace', defaultOptions);
const pkg = JSON.parse(tree.readContent('/package.json'));
expect(pkg.name).toEqual('foo');
});
it('should set the CLI version in package.json', () => {
const tree = schematicRunner.runSchematic('workspace', defaultOptions);
const pkg = JSON.parse(tree.readContent('/package.json'));
expect(pkg.devDependencies['@angular/cli']).toMatch('6.0.0');
});
it('should use the latest known versions in package.json', () => {
const tree = schematicRunner.runSchematic('workspace', defaultOptions);
const pkg = JSON.parse(tree.readContent('/package.json'));
expect(pkg.dependencies['@angular/core']).toEqual(latestVersions.Angular);
expect(pkg.dependencies['rxjs']).toEqual(latestVersions.RxJs);
expect(pkg.dependencies['zone.js']).toEqual(latestVersions.ZoneJs);
expect(pkg.devDependencies['typescript']).toEqual(latestVersions.TypeScript);
});
it('should create correct files when using minimal', () => {
const tree = schematicRunner.runSchematic('workspace', { ...defaultOptions, minimal: true });
const files = tree.files;
expect(files).toEqual(jasmine.arrayContaining([
'/angular.json',
'/.gitignore',
'/package.json',
'/README.md',
'/tsconfig.json',
]));
expect(files).not.toContain('/tslint.json');
expect(files).not.toContain('/.editorconfig');
});
});