Files
unos/unos-fe/src/app/index/index.component.spec.ts
T
usbharu cec972a11f
/ build-tool (pull_request) Has been skipped
/ build-angular (pull_request) Failing after 48s
/ build-docker-image (pull_request) Has been skipped
unos-fe: uiを変更
2024-03-14 12:48:42 +09:00

24 lines
584 B
TypeScript

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