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