Нема описа
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

kakocho-edit.spec.ts 563B

12345678910111213141516171819202122
  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { KakochoEdit } from './kakocho-edit';
  3. describe('KakochoEdit', () => {
  4. let component: KakochoEdit;
  5. let fixture: ComponentFixture<KakochoEdit>;
  6. beforeEach(async () => {
  7. await TestBed.configureTestingModule({
  8. imports: [KakochoEdit],
  9. }).compileComponents();
  10. fixture = TestBed.createComponent(KakochoEdit);
  11. component = fixture.componentInstance;
  12. await fixture.whenStable();
  13. });
  14. it('should create', () => {
  15. expect(component).toBeTruthy();
  16. });
  17. });