[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:
Stratoula Kalafateli 2024-01-30 19:52:49 +02:00 committed by GitHub
parent e69e971fb4
commit 82e22b3f76
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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');
});
});
});