import { ComponentFixture, TestBed } from '@angular/core/testing'; import { KakochoEdit } from './kakocho-edit'; describe('KakochoEdit', () => { let component: KakochoEdit; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [KakochoEdit], }).compileComponents(); fixture = TestBed.createComponent(KakochoEdit); component = fixture.componentInstance; await fixture.whenStable(); }); it('should create', () => { expect(component).toBeTruthy(); }); });