(type: ConfigType)
| 33 | |
| 34 | let applicationTree: UnitTestTree; |
| 35 | function runConfigSchematic(type: ConfigType): Promise<UnitTestTree> { |
| 36 | return schematicRunner.runSchematic<ConfigOptions>( |
| 37 | 'config', |
| 38 | { |
| 39 | project: 'foo', |
| 40 | type, |
| 41 | }, |
| 42 | applicationTree, |
| 43 | ); |
| 44 | } |
| 45 | |
| 46 | beforeEach(async () => { |
| 47 | const workspaceTree = await schematicRunner.runSchematic('workspace', workspaceOptions); |
no test coverage detected