From 82e48e1f2eeecc98d30592f80a821256a2e8734d Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Sun, 25 Oct 2020 14:58:46 +0100 Subject: [PATCH] Fix tests --- __tests__/meta.test.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/__tests__/meta.test.ts b/__tests__/meta.test.ts index a20737c..45e7155 100644 --- a/__tests__/meta.test.ts +++ b/__tests__/meta.test.ts @@ -25,7 +25,7 @@ jest.spyOn(global.Date.prototype, 'toISOString').mockImplementation(() => { }); jest.mock('moment', () => { - return () => jest.requireActual('moment')('2020-01-10T00:00:00.000Z'); + return () => jest.requireActual('moment')('2020-01-10T00:30:00.000Z'); }); describe('tags and labels', () => { @@ -201,18 +201,18 @@ describe('tags and labels', () => { 'event_schedule.env', { images: ['user/app'], - tagSchedule: `{{date}}` + tagSchedule: `{{date 'YYYYMMDD-HHmmss'}}` } as Inputs, - '20200110', + '20200110-013000', [ - 'user/app:20200110' + 'user/app:20200110-013000' ], [ "org.opencontainers.image.title=Hello-World", "org.opencontainers.image.description=This your first repo!", "org.opencontainers.image.url=https://github.com/octocat/Hello-World", "org.opencontainers.image.source=https://github.com/octocat/Hello-World.git", - "org.opencontainers.image.version=20200110", + "org.opencontainers.image.version=20200110-013000", "org.opencontainers.image.created=2020-01-10T00:30:00.000Z", "org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071", "org.opencontainers.image.licenses=MIT"