Files
ng-frame/src/app/pages/home/components/head/head.component.spec.ts
2022-03-03 17:26:04 +08:00

26 lines
612 B
TypeScript

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