21 lines
581 B
TypeScript
21 lines
581 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { AdminMainComponent } from './admin-main.component';
|
|
|
|
describe('AdminMainComponent', () => {
|
|
let component: AdminMainComponent;
|
|
let fixture: ComponentFixture<AdminMainComponent>;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [AdminMainComponent]
|
|
});
|
|
fixture = TestBed.createComponent(AdminMainComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|