unskipping a test to check on CI and FTR (#139756)

This commit is contained in:
Rashmi Kulkarni 2022-09-08 17:10:02 -07:00 committed by GitHub
parent 98f671b1d1
commit fb157fab77
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,8 +46,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
});
}
// FLAKY: https://github.com/elastic/kibana/issues/138160
describe.skip('with single line comments', async () => {
describe('with single line comments', async () => {
await runTests(
[
{
@ -128,6 +127,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
body: '{\n "query": \'\'', // E.g. using single quotes
},
],
async () => {
expect(await PageObjects.console.hasInvalidSyntax()).to.be(true);
}