@angular-devkit/schematics-cli
Version:
Angular Schematics - CLI
25 lines (20 loc) • 902 B
text/typescript
import { Tree } from '@angular-devkit/schematics';
import { SchematicTestRunner } from '@angular-devkit/schematics/testing';
import * as path from 'path';
// SchematicTestRunner needs an absolute path to the collection to test.
const collectionPath = path.join(__dirname, '../collection.json');
describe('my-full-schematic', () => {
it('requires required option', async () => {
// We test that
const runner = new SchematicTestRunner('schematics', collectionPath);
await expectAsync(
runner.runSchematic('my-full-schematic', {}, Tree.empty())
).toBeRejected();
});
it('works', async () => {
const runner = new SchematicTestRunner('schematics', collectionPath);
const tree = await runner.runSchematic('my-full-schematic', { name: 'str' }, Tree.empty());
// Listing files
expect(tree.files.sort()).toEqual(['/allo', '/hola', '/test1', '/test2']);
});
});