From 3bbf08c9d0a5fe83c3ea272937ecc161ff3a56e4 Mon Sep 17 00:00:00 2001 From: Matt Travi Date: Tue, 26 Jul 2022 16:21:09 -0500 Subject: [PATCH] test(integration): upgrade the gitbox image to support arm architecture in addition to x86 (#2516) --- test/helpers/gitbox.js | 2 +- test/helpers/mockserver.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/helpers/gitbox.js b/test/helpers/gitbox.js index 284408d5cd..ed033cade8 100644 --- a/test/helpers/gitbox.js +++ b/test/helpers/gitbox.js @@ -3,7 +3,7 @@ const getStream = require('get-stream'); const pRetry = require('p-retry'); const {initBareRepo, gitShallowClone} = require('./git-utils'); -const IMAGE = 'pvdlg/docker-gitbox:latest'; +const IMAGE = 'semanticrelease/docker-gitbox:latest'; const SERVER_PORT = 80; const HOST_PORT = 2080; const SERVER_HOST = 'localhost'; diff --git a/test/helpers/mockserver.js b/test/helpers/mockserver.js index 777eab46df..a54b8007cd 100644 --- a/test/helpers/mockserver.js +++ b/test/helpers/mockserver.js @@ -36,7 +36,7 @@ async function start() { } /** - * Stop and remote the `mockserver` Docker container. + * Stop and remove the `mockserver` Docker container. */ async function stop() { await container.stop(); @@ -91,7 +91,7 @@ async function mock( } /** - * Verify the `mockserver` has been called with a requestion matching expectations. The `expectation` is created with the `mock` function. + * Verify the `mockserver` has been called with a request matching expectations. The `expectation` is created with the `mock` function. * * @param {Object} expectation The expectation created with `mock` function. * @return {Promise} A Promise that resolves if the expectation is met or reject otherwise.