Skip to content

Commit

Permalink
unksip functional test (#102633)
Browse files Browse the repository at this point in the history
  • Loading branch information
flash1293 authored Jun 22, 2021
1 parent 1ea3506 commit 62fc27b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion test/functional/page_objects/time_to_visualize_page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ export class TimeToVisualizePageObject extends FtrService {
vizName: string,
{ saveAsNew, redirectToOrigin, addToDashboard, dashboardId, saveToLibrary }: SaveModalArgs = {}
) {
await this.testSubjects.setValue('savedObjectTitle', vizName);
await this.testSubjects.setValue('savedObjectTitle', vizName, {
typeCharByChar: true,
clearWithKeyboard: true,
});

const hasSaveAsNew = await this.testSubjects.exists('saveAsNewCheckbox');
if (hasSaveAsNew && saveAsNew !== undefined) {
Expand Down
3 changes: 1 addition & 2 deletions x-pack/test/functional/apps/lens/add_to_dashboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await PageObjects.lens.assertMetric('Maximum of bytes', '19,986');
};

// flaky https://github.com/elastic/kibana/issues/102332
describe.skip('lens add-to-dashboards tests', () => {
describe('lens add-to-dashboards tests', () => {
it('should allow new lens to be added by value to a new dashboard', async () => {
await createNewLens();
await PageObjects.lens.save('New Lens from Modal', false, false, false, 'new');
Expand Down

0 comments on commit 62fc27b

Please sign in to comment.