(
runner: SchematicTestRunner,
appOptions = {},
tree?: Tree,
)
| 13 | |
| 14 | /** Create a base app used for testing. */ |
| 15 | export async function createTestApp( |
| 16 | runner: SchematicTestRunner, |
| 17 | appOptions = {}, |
| 18 | tree?: Tree, |
| 19 | ): Promise<UnitTestTree> { |
| 20 | return createTestProject(runner, 'application', appOptions, tree); |
| 21 | } |