This commit is contained in:
Ruin
2022-03-03 17:26:04 +08:00
parent 68c7b782d4
commit 19345cc653
25 changed files with 288 additions and 500 deletions

View File

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