Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils_spec.js « explorer « container_registry « packages_and_registries « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5063759a6201822104ac5b1218d3bdcb5ff84665 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { timeTilRun } from '~/packages_and_registries/container_registry/explorer/utils';

describe('Container registry utilities', () => {
  describe('timeTilRun', () => {
    beforeEach(() => {
      jest.spyOn(Date, 'now').mockImplementation(() => new Date('2063-04-04T00:42:00Z').getTime());
    });

    it('should return a human readable time', () => {
      const result = timeTilRun('2063-04-08T01:44:03Z');

      expect(result).toBe('4 days');
    });

    it('should return an empty string with null times', () => {
      const result = timeTilRun(null);

      expect(result).toBe('');
    });
  });
});