Files
doneit-web/src/app/tiny-mce/tiny-mce.page.spec.ts
T
Eudes Inácio 4c15001cd3 adding tiny
2023-06-30 15:35:11 +01:00

25 lines
669 B
TypeScript

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