Alan Agius 44c1e6d0d2 refactor(@angular-devkit/schematics): remove deprecated analytics property
BREAKING CHANGE:

Deprecated `analytics` property has been removed from `TypedSchematicContext` interface
2022-01-28 11:01:52 -08:00

1.5 KiB

API Report File for "@angular-devkit/schematics_testing"

Do not edit this file. It is a report generated by API Extractor.


/// <reference types="node" />

import { logging } from '@angular-devkit/core';
import { Observable } from 'rxjs';
import { Path } from '@angular-devkit/core';
import { PathFragment } from '@angular-devkit/core';
import { Url } from 'url';

// @public (undocumented)
export class SchematicTestRunner {
    constructor(_collectionName: string, collectionPath: string);
    // (undocumented)
    callRule(rule: Rule, tree: Tree_2, parentContext?: Partial<SchematicContext>): Observable<Tree_2>;
    // (undocumented)
    get engine(): SchematicEngine<{}, {}>;
    // (undocumented)
    get logger(): logging.Logger;
    // (undocumented)
    registerCollection(collectionName: string, collectionPath: string): void;
    // (undocumented)
    runExternalSchematicAsync<SchematicSchemaT>(collectionName: string, schematicName: string, opts?: SchematicSchemaT, tree?: Tree_2): Observable<UnitTestTree>;
    // (undocumented)
    runSchematicAsync<SchematicSchemaT>(schematicName: string, opts?: SchematicSchemaT, tree?: Tree_2): Observable<UnitTestTree>;
    // (undocumented)
    get tasks(): TaskConfiguration[];
}

// @public (undocumented)
export class UnitTestTree extends DelegateTree {
    // (undocumented)
    get files(): string[];
    // (undocumented)
    readContent(path: string): string;
}

// (No @packageDocumentation comment for this package)