ngx-text-editor-angular
Version:
WYSIWYG Editor for Angular 2+
15 lines (11 loc) • 333 B
text/typescript
import { AppPage } from './app.po';
describe('ngx-text-editor App', () => {
let page: AppPage;
beforeEach(() => {
page = new AppPage();
});
it('should display welcome message', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('A Simple WYSIWYG Editor for Angular 6 Applications.');
});
});