ngx-editor-n
Version:
WYSIWYG Editor for Angular Applications
44 lines (35 loc) • 1.41 kB
text/typescript
import { TestBed, async } from '@angular/core/testing';
import { FormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
import { NgxEditorNModule } from "./ngx-editor-n/ngx-editor-n.module";
import { HttpClientModule } from '@angular/common/http';
import { MatFormFieldModule, MatDialogModule } from '@angular/material';
describe('AppComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [
FormsModule,
HttpClientModule,
NgxEditorNModule,
MatDialogModule
],
declarations: [AppComponent]
}).compileComponents();
}));
it('should create the app', () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.debugElement.componentInstance;
expect(app).toBeTruthy();
});
it(`should have as title 'app'`, () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.debugElement.componentInstance;
expect(app.title).toEqual('ngx-editor');
});
it('should render title in a h6 tag', () => {
const fixture = TestBed.createComponent(AppComponent);
fixture.detectChanges();
const compiled = fixture.debugElement.nativeElement;
expect(compiled.querySelector('h6').textContent).toContain('A Simple WYSIWYG Editor for Angular 7 Applications.');
});
});