Initial commit
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
import { IonicModule } from '@ionic/angular';
|
||||
import { RouterModule } from '@angular/router';
|
||||
|
||||
import { ViewMessagePageRoutingModule } from './view-message-routing.module';
|
||||
import { ViewMessagePage } from './view-message.page';
|
||||
|
||||
describe('ViewMessagePage', () => {
|
||||
let component: ViewMessagePage;
|
||||
let fixture: ComponentFixture<ViewMessagePage>;
|
||||
|
||||
beforeEach(async () => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ViewMessagePage],
|
||||
imports: [IonicModule.forRoot(), ViewMessagePageRoutingModule, RouterModule.forRoot([])]
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(ViewMessagePage);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user