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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/helpers/fake_date.js')
-rw-r--r--spec/frontend/helpers/fake_date.js49
1 files changed, 0 insertions, 49 deletions
diff --git a/spec/frontend/helpers/fake_date.js b/spec/frontend/helpers/fake_date.js
deleted file mode 100644
index 387747ab5bd..00000000000
--- a/spec/frontend/helpers/fake_date.js
+++ /dev/null
@@ -1,49 +0,0 @@
-// Frida Kahlo's birthday (6 = July)
-export const DEFAULT_ARGS = [2020, 6, 6];
-
-const RealDate = Date;
-
-const isMocked = val => Boolean(val.mock);
-
-export const createFakeDateClass = ctorDefault => {
- const FakeDate = new Proxy(RealDate, {
- construct: (target, argArray) => {
- const ctorArgs = argArray.length ? argArray : ctorDefault;
-
- return new RealDate(...ctorArgs);
- },
- apply: (target, thisArg, argArray) => {
- const ctorArgs = argArray.length ? argArray : ctorDefault;
-
- return new RealDate(...ctorArgs).toString();
- },
- // We want to overwrite the default 'now', but only if it's not already mocked
- get: (target, prop) => {
- if (prop === 'now' && !isMocked(target[prop])) {
- return () => new RealDate(...ctorDefault).getTime();
- }
-
- return target[prop];
- },
- getPrototypeOf: target => {
- return target.prototype;
- },
- // We need to be able to set props so that `jest.spyOn` will work.
- set: (target, prop, value) => {
- // eslint-disable-next-line no-param-reassign
- target[prop] = value;
- return true;
- },
- });
-
- return FakeDate;
-};
-
-export const useFakeDate = (...args) => {
- const FakeDate = createFakeDateClass(args.length ? args : DEFAULT_ARGS);
- global.Date = FakeDate;
-};
-
-export const useRealDate = () => {
- global.Date = RealDate;
-};