|
@@ -0,0 +1,24 @@
|
|
|
+import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
|
+import { IonicModule } from '@ionic/angular';
|
|
|
+
|
|
|
+import { CloseFriendsComponent } from './close-friends.component';
|
|
|
+
|
|
|
+describe('CloseFriendsComponent', () => {
|
|
|
+ let component: CloseFriendsComponent;
|
|
|
+ let fixture: ComponentFixture<CloseFriendsComponent>;
|
|
|
+
|
|
|
+ beforeEach(waitForAsync(() => {
|
|
|
+ TestBed.configureTestingModule({
|
|
|
+ declarations: [ CloseFriendsComponent ],
|
|
|
+ imports: [IonicModule.forRoot()]
|
|
|
+ }).compileComponents();
|
|
|
+
|
|
|
+ fixture = TestBed.createComponent(CloseFriendsComponent);
|
|
|
+ component = fixture.componentInstance;
|
|
|
+ fixture.detectChanges();
|
|
|
+ }));
|
|
|
+
|
|
|
+ it('should create', () => {
|
|
|
+ expect(component).toBeTruthy();
|
|
|
+ });
|
|
|
+});
|