[Fleet] tests - update package registry image (#138915)

* fleet tests - update package registry image

* Apply suggestions from code review
This commit is contained in:
Dominique Clarke 2022-08-16 10:53:56 -06:00 committed by GitHub
parent 28f7c425d9
commit fab8932497
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View file

@ -18,7 +18,7 @@ import pRetry from 'p-retry';
const BEFORE_SETUP_TIMEOUT = 30 * 60 * 1000; // 30 minutes;
const DOCKER_START_TIMEOUT = 5 * 60 * 1000; // 5 minutes
const DOCKER_IMAGE = `docker.elastic.co/package-registry/distribution:d32582b3bbeef5283e4450a9403f26c2a5e415f4`;
const DOCKER_IMAGE = `docker.elastic.co/package-registry/distribution:c9f9a83da2c00118d5451cc69c680ade74494d4e`;
function firstWithTimeout(source$: Rx.Observable<any>, errorMsg: string, ms = 30 * 1000) {
return Rx.race(

View file

@ -19,8 +19,7 @@ import { appContextService } from '../services';
import { useDockerRegistry } from './helpers';
// Failing: https://github.com/elastic/kibana/issues/138905
describe.skip('validate bundled packages', () => {
describe('validate bundled packages', () => {
const registryUrl = useDockerRegistry();
let mockContract: ReturnType<typeof createAppContextStartContractMock>;