mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[Expressions] Unskips test (#175879)
## Summary Closes https://github.com/elastic/kibana/issues/156780 Unskips the expression tests Flaky runner (50 times)
This commit is contained in:
parent
e69e971fb4
commit
82e22b3f76
1 changed files with 2 additions and 3 deletions
|
@ -17,8 +17,7 @@ export default function ({ getService }: PluginFunctionalProviderContext) {
|
|||
const find = getService('find');
|
||||
const browser = getService('browser');
|
||||
|
||||
// FLAKY: https://github.com/elastic/kibana/issues/156780
|
||||
describe.skip('', () => {
|
||||
describe('', () => {
|
||||
it('runs expression', async () => {
|
||||
await retry.try(async () => {
|
||||
const text = await testSubjects.getVisibleText('expressionResult');
|
||||
|
@ -54,7 +53,7 @@ export default function ({ getService }: PluginFunctionalProviderContext) {
|
|||
await find.clickByCssSelector(selector);
|
||||
await retry.try(async () => {
|
||||
const text = await browser.getCurrentUrl();
|
||||
expect(text).to.contain('https://www.google.com/');
|
||||
expect(text).to.contain('https://www.google.com');
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue