Skip to content

Instantly share code, notes, and snippets.

@krishna-acondy
Last active May 23, 2019 21:35
Show Gist options
  • Save krishna-acondy/bf723fecb4b2ce362ad554e749fc3ef4 to your computer and use it in GitHub Desktop.
Save krishna-acondy/bf723fecb4b2ce362ad554e749fc3ef4 to your computer and use it in GitHub Desktop.
Angular Unit Testing - DashboardTestModule
@NgModule({
declarations: [
DashboardComponent
],
imports: [
CommonModule,
TodosTestModule
],
providers: [
{ provide: DashboardService, useClass: DashboardServiceMock }
],
exports: [
DashboardComponent
]
})
export class DashboardTestModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment