disable flaky tests (#25077) (#36579)

This commit is contained in:
spalger 2019-06-18 20:51:29 -07:00
parent 5bedad9116
commit 4acb9c3f8f

View file

@ -55,7 +55,8 @@ describe('kbn-pm production', () => {
}
}, timeout);
test(
// FLAKY: https://github.com/elastic/kibana/issues/25077
test.skip(
'builds and copies projects for production',
async () => {
await buildProductionProjects({ kibanaRoot: tmpDir, buildRoot });
@ -75,7 +76,8 @@ describe('kbn-pm production', () => {
timeout
);
test(
// FLAKY: https://github.com/elastic/kibana/issues/36579
test.skip(
'builds and copies only OSS projects for production',
async () => {
await buildProductionProjects({ kibanaRoot: tmpDir, buildRoot, onlyOSS: true });