This commit is contained in:
小海
2020-04-23 21:59:32 +08:00
parent caad40170a
commit 2bcca393e1
44 changed files with 485 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
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();
});
});