Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
auumgn committed Apr 25, 2024
1 parent 783a311 commit bf5556d
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions ui/src/app/member/contact-update.component.spec.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ComponentFixture, TestBed } from '@angular/core/testing'

import { ContactUpdateComponent } from './contact-update.component';
import { ContactUpdateComponent } from './contact-update.component'
import { AppModule } from '../app.module'

describe('ContactUpdateComponent', () => {
let component: ContactUpdateComponent;
let fixture: ComponentFixture<ContactUpdateComponent>;
let component: ContactUpdateComponent
let fixture: ComponentFixture<ContactUpdateComponent>

beforeEach(() => {
TestBed.configureTestingModule({
declarations: [ContactUpdateComponent]
});
fixture = TestBed.createComponent(ContactUpdateComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
imports: [AppModule],
declarations: [ContactUpdateComponent],
})
fixture = TestBed.createComponent(ContactUpdateComponent)
component = fixture.componentInstance
fixture.detectChanges()
})

it('should create', () => {
expect(component).toBeTruthy();
});
});
expect(component).toBeTruthy()
})
})

0 comments on commit bf5556d

Please sign in to comment.