selenium: Disable flaky test

Error in CI:

```
AssertionError [ERR_ASSERTION]: Expected values to be strictly equal:
'' !== 'null\n'
```

Change-Id: I47b4794c4098a25696ffe42c42d00fd767971b5d
This commit is contained in:
Kosta Harlan 2023-03-30 12:16:36 +02:00
parent f18c0613d7
commit bdebcf4e58
No known key found for this signature in database
GPG key ID: BC3D8915606A5ED9

View file

@ -135,7 +135,7 @@ describe( 'Filter editing', function () {
assert( await ViewEditPage.error.isDisplayed() );
} );
it( 'data is retained if saving fails', async function () {
it.skip( 'data is retained if saving fails', async function () {
await ViewEditPage;
const rulesValue = await ViewEditPage.rules.getValue();
assert.strictEqual( rulesValue, rules + '\n' );