Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- fdescribe('TesterComponent', () => {
- let component: TesterComponent;
- let fixture: ComponentFixture<TesterComponent>;
- beforeEach(async(() => {
- TestBed.configureTestingModule({
- declarations: [TesterComponent],
- imports: [AppMaterialModule, NoopAnimationsModule]
- }).compileComponents();
- }));
- beforeEach(() => {
- fixture = TestBed.createComponent(TesterComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment