mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-17 19:13:34 +08:00
The generated spec was using the same import when it should be adapted if `exportDefault` is used: ```ts import { UserComponent } from './user.component.ts` ``` It now produces: ```ts import UserComponent from './user.component.ts` ```