zgo/src/app/notifier/notifier.component.spec.ts

24 lines
613 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing';
import { NotifierComponent } from './notifier.component';
describe('NotifierComponent', () => {
let component: NotifierComponent;
let fixture: ComponentFixture<NotifierComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ NotifierComponent ]
})
.compileComponents();
fixture = TestBed.createComponent(NotifierComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});