Skip to content

Commit 2ce01c6

Browse files
committed
test(dashmate): cover rc image tags in migration spec
1 parent 8bfa0aa commit 2ce01c6

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

packages/dashmate/test/unit/config/configFile/migrate3xTo4xRcImages.spec.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,11 @@ import migrateConfigFileFactory from '../../../../src/config/configFile/migrateC
2525
describe('migration 4.0.0-rc.3: re-sync Drive ABCI & rs-dapi images (#3889)', () => {
2626
const STALE_DRIVE = 'dashpay/drive:3';
2727
const STALE_DRIVE_DEV = 'dashpay/drive:3-dev';
28+
const STALE_DRIVE_RC = 'dashpay/drive:3-rc';
2829
const STALE_DRIVE_HOTFIX = 'dashpay/drive:3-hotfix';
2930
const STALE_RS_DAPI = 'dashpay/rs-dapi:3';
3031
const STALE_RS_DAPI_DEV = 'dashpay/rs-dapi:3-dev';
32+
const STALE_RS_DAPI_RC = 'dashpay/rs-dapi:3-rc';
3133
const STALE_RS_DAPI_HOTFIX = 'dashpay/rs-dapi:3-hotfix';
3234
const CUSTOM_DRIVE = 'private-registry.internal/drive:patched-v3';
3335
const CUSTOM_RS_DAPI = 'my-org/rs-dapi:fork-3';
@@ -141,6 +143,7 @@ describe('migration 4.0.0-rc.3: re-sync Drive ABCI & rs-dapi images (#3889)', ()
141143
// an early oversight in the predicate missed it.
142144
[
143145
{ label: 'dev-series', drive: STALE_DRIVE_DEV, rsDapi: STALE_RS_DAPI_DEV },
146+
{ label: 'rc-series', drive: STALE_DRIVE_RC, rsDapi: STALE_RS_DAPI_RC },
144147
{ label: 'hotfix-series', drive: STALE_DRIVE_HOTFIX, rsDapi: STALE_RS_DAPI_HOTFIX },
145148
].forEach(({ label, drive, rsDapi }) => {
146149
it(`re-syncs the ${label} stale tags (${drive}, ${rsDapi})`, () => {

0 commit comments

Comments
 (0)