Skip to content

Commit

Permalink
[TSVB] Remove the char by char typing on markodown
Browse files Browse the repository at this point in the history
  • Loading branch information
stratoula committed Sep 10, 2020
1 parent ad62fa0 commit 8ab2860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/page_objects/visual_builder_page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export function VisualBuilderPageProvider({ getService, getPageObjects }: FtrPro
public async enterMarkdown(markdown: string) {
const input = await find.byCssSelector('.tvbMarkdownEditor__editor textarea');
await this.clearMarkdown();
await input.type(markdown, { charByChar: true });
await input.type(markdown);
await PageObjects.visChart.waitForVisualizationRenderingStabilized();
}

Expand Down

0 comments on commit 8ab2860

Please sign in to comment.