Files
doneit-web/src/app/pages/chat/new-group/contacts/contacts.page.spec.ts
T
tiago.kayaya 4c16f7bd83 Add "new-group" and "contacts" pages
- Style new group page
- Improve style in chat page
2020-12-21 16:37:44 +01:00

25 lines
661 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { ContactsPage } from './contacts.page';
describe('ContactsPage', () => {
let component: ContactsPage;
let fixture: ComponentFixture<ContactsPage>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ContactsPage ],
imports: [IonicModule.forRoot()]
}).compileComponents();
fixture = TestBed.createComponent(ContactsPage);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});