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