Files
blog-frontEnd/index/src/app/view/admin/admin-link/admin-link.component.spec.ts
2020-04-23 21:59:32 +08:00

26 lines
650 B
TypeScript

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