Skip to content

Commit

Permalink
skip flaky suites (elastic#107043)
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger authored and vadimkibana committed Aug 8, 2021
1 parent 7fbf2d6 commit 1a4ab15
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ export default function ({ getService }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const transform = getService('transform');

describe('for user with full transform access', function () {
// FLAKY: https://github.com/elastic/kibana/issues/107043
describe.skip('for user with full transform access', function () {
describe('with no data loaded', function () {
before(async () => {
await transform.securityUI.loginAsTransformPowerUser();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ export default function ({ getService }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const transform = getService('transform');

describe('for user with full transform access', function () {
// FLAKY: https://github.com/elastic/kibana/issues/107043
describe.skip('for user with full transform access', function () {
describe('with no data loaded', function () {
before(async () => {
await transform.securityUI.loginAsTransformViewer();
Expand Down

0 comments on commit 1a4ab15

Please sign in to comment.