Skip to content

Commit

Permalink
skip test instead of deleting
Browse files Browse the repository at this point in the history
  • Loading branch information
VladLasitsa committed Mar 30, 2020
1 parent d05128e commit 6bd2eae
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,17 @@ export default function({ getService, getPageObjects }) {
const counter = await getCounterValue();
expect(counter).to.be('10');
});

it.skip('should allow changing params from within the vis', async () => {
await testSubjects.click('counter');
await renderable.waitForRender();
const visValue = await getCounterValue();
expect(visValue).to.be('11');
const editorValue = await testSubjects.getAttribute('counterEditor', 'value');
expect(editorValue).to.be('11');
// If changing a param from within the vis it should immediately apply and not bring editor in an unchanged state
const isApplyEnabled = await PageObjects.visEditor.isApplyEnabled();
expect(isApplyEnabled).to.be(false);
});
});
}

0 comments on commit 6bd2eae

Please sign in to comment.