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

jest.js « fake_date « __helpers__ « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65e45619049eb096cf9bd93bae47542111e67717 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { createJestExecutionWatcher } from '../jest_execution_watcher';
import { RealDate, createFakeDateClass } from './fake_date';

const throwInsideExecutionError = (fnName) => {
  throw new Error(`Cannot call "${fnName}" during test execution (i.e. within "it", "beforeEach", "beforeAll", etc.).

Instead, please move the call to "${fnName}" inside the "describe" block itself.

      describe('', () => {
    +   ${fnName}();

        it('', () => {
    -     ${fnName}();
        })
      })
`);
};

const isExecutingTest = createJestExecutionWatcher();

export const useDateInScope = (fnName, factory) => {
  if (isExecutingTest()) {
    throwInsideExecutionError(fnName);
  }

  let origDate;

  beforeAll(() => {
    origDate = global.Date;
    global.Date = factory();
  });

  afterAll(() => {
    global.Date = origDate;
  });
};

export const useFakeDate = (...args) =>
  useDateInScope('useFakeDate', () => createFakeDateClass(args));

export const useRealDate = () => useDateInScope('useRealDate', () => RealDate);