Skip to content

Instantly share code, notes, and snippets.

@t-palmer
Created March 12, 2019 23:50
Show Gist options
  • Save t-palmer/9005ddb84e09bfd4963e44dcdedec70b to your computer and use it in GitHub Desktop.
Save t-palmer/9005ddb84e09bfd4963e44dcdedec70b to your computer and use it in GitHub Desktop.
Child stub component with providers for testing
import { Component } from '@angular/core';
import { ChildComponent } from './child.component';
@Component({
selector: 'app-child',
template: '',
providers: [
{
provide: ChildComponent,
useClass: ChildStubComponent
}
]
})
export class ChildStubComponent {
updateTimeStamp() {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment