Files
doneit-web/src/app/pages/chat/new-group/new-group.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
662 B
TypeScript

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