zgo/src/app/show-error/show-error.component.spec.ts

24 lines
621 B
TypeScript

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