aboutsummaryrefslogtreecommitdiff
path: root/node_modules/@jest/environment
diff options
context:
space:
mode:
authorJoel Kronqvist <joel.h.kronqvist@gmail.com>2022-03-05 19:02:27 +0200
committerJoel Kronqvist <joel.h.kronqvist@gmail.com>2022-03-05 19:02:27 +0200
commit5d309ff52cd399a6b71968a6b9a70c8ac0b98981 (patch)
tree360f7eb50f956e2367ef38fa1fc6ac7ac5258042 /node_modules/@jest/environment
parentb500a50f1b97d93c98b36ed9a980f8188d648147 (diff)
downloadLYLLRuoka-5d309ff52cd399a6b71968a6b9a70c8ac0b98981.tar.gz
LYLLRuoka-5d309ff52cd399a6b71968a6b9a70c8ac0b98981.zip
Added node_modules for the updating to work properly.
Diffstat (limited to 'node_modules/@jest/environment')
-rw-r--r--node_modules/@jest/environment/LICENSE21
-rw-r--r--node_modules/@jest/environment/build/index.d.ts267
-rw-r--r--node_modules/@jest/environment/build/index.js1
-rw-r--r--node_modules/@jest/environment/package.json32
4 files changed, 321 insertions, 0 deletions
diff --git a/node_modules/@jest/environment/LICENSE b/node_modules/@jest/environment/LICENSE
new file mode 100644
index 0000000..b96dcb0
--- /dev/null
+++ b/node_modules/@jest/environment/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) Facebook, Inc. and its affiliates.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/node_modules/@jest/environment/build/index.d.ts b/node_modules/@jest/environment/build/index.d.ts
new file mode 100644
index 0000000..fe18ff0
--- /dev/null
+++ b/node_modules/@jest/environment/build/index.d.ts
@@ -0,0 +1,267 @@
+/**
+ * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
+ *
+ * This source code is licensed under the MIT license found in the
+ * LICENSE file in the root directory of this source tree.
+ */
+/// <reference types="node" />
+import type { Context } from 'vm';
+import type { LegacyFakeTimers, ModernFakeTimers } from '@jest/fake-timers';
+import type { Circus, Config, Global } from '@jest/types';
+import type { fn as JestMockFn, mocked as JestMockMocked, spyOn as JestMockSpyOn, ModuleMocker } from 'jest-mock';
+export declare type EnvironmentContext = {
+ console: Console;
+ docblockPragmas: Record<string, string | Array<string>>;
+ testPath: Config.Path;
+};
+export declare type ModuleWrapper = (this: Module['exports'], module: Module, exports: Module['exports'], require: Module['require'], __dirname: string, __filename: Module['filename'], jest?: Jest, ...extraGlobals: Array<Global.Global[keyof Global.Global]>) => unknown;
+export declare class JestEnvironment<Timer = unknown> {
+ constructor(config: Config.ProjectConfig, context?: EnvironmentContext);
+ global: Global.Global;
+ fakeTimers: LegacyFakeTimers<Timer> | null;
+ fakeTimersModern: ModernFakeTimers | null;
+ moduleMocker: ModuleMocker | null;
+ getVmContext(): Context | null;
+ setup(): Promise<void>;
+ teardown(): Promise<void>;
+ handleTestEvent?: Circus.EventHandler;
+ exportConditions?: () => Array<string>;
+}
+export declare type Module = NodeModule;
+export interface Jest {
+ /**
+ * Advances all timers by the needed milliseconds so that only the next timeouts/intervals will run.
+ * Optionally, you can provide steps, so it will run steps amount of next timeouts/intervals.
+ */
+ advanceTimersToNextTimer(steps?: number): void;
+ /**
+ * Disables automatic mocking in the module loader.
+ */
+ autoMockOff(): Jest;
+ /**
+ * Enables automatic mocking in the module loader.
+ */
+ autoMockOn(): Jest;
+ /**
+ * Clears the mock.calls and mock.instances properties of all mocks.
+ * Equivalent to calling .mockClear() on every mocked function.
+ */
+ clearAllMocks(): Jest;
+ /**
+ * Removes any pending timers from the timer system. If any timers have been
+ * scheduled, they will be cleared and will never have the opportunity to
+ * execute in the future.
+ */
+ clearAllTimers(): void;
+ /**
+ * Indicates that the module system should never return a mocked version
+ * of the specified module, including all of the specified module's
+ * dependencies.
+ */
+ deepUnmock(moduleName: string): Jest;
+ /**
+ * Disables automatic mocking in the module loader.
+ *
+ * After this method is called, all `require()`s will return the real
+ * versions of each module (rather than a mocked version).
+ */
+ disableAutomock(): Jest;
+ /**
+ * When using `babel-jest`, calls to mock will automatically be hoisted to
+ * the top of the code block. Use this method if you want to explicitly avoid
+ * this behavior.
+ */
+ doMock(moduleName: string, moduleFactory?: () => unknown, options?: {
+ virtual?: boolean;
+ }): Jest;
+ /**
+ * Indicates that the module system should never return a mocked version
+ * of the specified module from require() (e.g. that it should always return
+ * the real module).
+ */
+ dontMock(moduleName: string): Jest;
+ /**
+ * Enables automatic mocking in the module loader.
+ */
+ enableAutomock(): Jest;
+ /**
+ * Creates a mock function. Optionally takes a mock implementation.
+ */
+ fn: typeof JestMockFn;
+ /**
+ * Given the name of a module, use the automatic mocking system to generate a
+ * mocked version of the module for you.
+ *
+ * This is useful when you want to create a manual mock that extends the
+ * automatic mock's behavior.
+ *
+ * @deprecated Use `jest.createMockFromModule()` instead
+ */
+ genMockFromModule(moduleName: string): unknown;
+ /**
+ * Given the name of a module, use the automatic mocking system to generate a
+ * mocked version of the module for you.
+ *
+ * This is useful when you want to create a manual mock that extends the
+ * automatic mock's behavior.
+ */
+ createMockFromModule(moduleName: string): unknown;
+ /**
+ * Determines if the given function is a mocked function.
+ */
+ isMockFunction(fn: (...args: Array<any>) => unknown): fn is ReturnType<typeof JestMockFn>;
+ /**
+ * Mocks a module with an auto-mocked version when it is being required.
+ */
+ mock(moduleName: string, moduleFactory?: () => unknown, options?: {
+ virtual?: boolean;
+ }): Jest;
+ /**
+ * Mocks a module with the provided module factory when it is being imported.
+ */
+ unstable_mockModule<T = unknown>(moduleName: string, moduleFactory: () => Promise<T> | T, options?: {
+ virtual?: boolean;
+ }): Jest;
+ /**
+ * Returns the actual module instead of a mock, bypassing all checks on
+ * whether the module should receive a mock implementation or not.
+ *
+ * @example
+ ```
+ jest.mock('../myModule', () => {
+ // Require the original module to not be mocked...
+ const originalModule = jest.requireActual(moduleName);
+ return {
+ __esModule: true, // Use it when dealing with esModules
+ ...originalModule,
+ getRandom: jest.fn().mockReturnValue(10),
+ };
+ });
+
+ const getRandom = require('../myModule').getRandom;
+
+ getRandom(); // Always returns 10
+ ```
+ */
+ requireActual: (moduleName: string) => unknown;
+ /**
+ * Returns a mock module instead of the actual module, bypassing all checks
+ * on whether the module should be required normally or not.
+ */
+ requireMock: (moduleName: string) => unknown;
+ /**
+ * Resets the state of all mocks.
+ * Equivalent to calling .mockReset() on every mocked function.
+ */
+ resetAllMocks(): Jest;
+ /**
+ * Resets the module registry - the cache of all required modules. This is
+ * useful to isolate modules where local state might conflict between tests.
+ */
+ resetModules(): Jest;
+ /**
+ * Restores all mocks back to their original value. Equivalent to calling
+ * `.mockRestore` on every mocked function.
+ *
+ * Beware that jest.restoreAllMocks() only works when the mock was created with
+ * jest.spyOn; other mocks will require you to manually restore them.
+ */
+ restoreAllMocks(): Jest;
+ mocked: typeof JestMockMocked;
+ /**
+ * Runs failed tests n-times until they pass or until the max number of
+ * retries is exhausted. This only works with `jest-circus`!
+ */
+ retryTimes(numRetries: number): Jest;
+ /**
+ * Exhausts tasks queued by setImmediate().
+ *
+ * > Note: This function is not available when using Lolex as fake timers implementation
+ */
+ runAllImmediates(): void;
+ /**
+ * Exhausts the micro-task queue (usually interfaced in node via
+ * process.nextTick).
+ */
+ runAllTicks(): void;
+ /**
+ * Exhausts the macro-task queue (i.e., all tasks queued by setTimeout()
+ * and setInterval()).
+ */
+ runAllTimers(): void;
+ /**
+ * Executes only the macro-tasks that are currently pending (i.e., only the
+ * tasks that have been queued by setTimeout() or setInterval() up to this
+ * point). If any of the currently pending macro-tasks schedule new
+ * macro-tasks, those new tasks will not be executed by this call.
+ */
+ runOnlyPendingTimers(): void;
+ /**
+ * Advances all timers by msToRun milliseconds. All pending "macro-tasks"
+ * that have been queued via setTimeout() or setInterval(), and would be
+ * executed within this timeframe will be executed.
+ */
+ advanceTimersByTime(msToRun: number): void;
+ /**
+ * Returns the number of fake timers still left to run.
+ */
+ getTimerCount(): number;
+ /**
+ * Explicitly supplies the mock object that the module system should return
+ * for the specified module.
+ *
+ * Note It is recommended to use `jest.mock()` instead. The `jest.mock`
+ * API's second argument is a module factory instead of the expected
+ * exported module object.
+ */
+ setMock(moduleName: string, moduleExports: unknown): Jest;
+ /**
+ * Set the default timeout interval for tests and before/after hooks in
+ * milliseconds.
+ *
+ * Note: The default timeout interval is 5 seconds if this method is not
+ * called.
+ */
+ setTimeout(timeout: number): Jest;
+ /**
+ * Creates a mock function similar to `jest.fn` but also tracks calls to
+ * `object[methodName]`.
+ *
+ * Note: By default, jest.spyOn also calls the spied method. This is
+ * different behavior from most other test libraries.
+ */
+ spyOn: typeof JestMockSpyOn;
+ /**
+ * Indicates that the module system should never return a mocked version of
+ * the specified module from require() (e.g. that it should always return the
+ * real module).
+ */
+ unmock(moduleName: string): Jest;
+ /**
+ * Instructs Jest to use fake versions of the standard timer functions.
+ */
+ useFakeTimers(implementation?: 'modern' | 'legacy'): Jest;
+ /**
+ * Instructs Jest to use the real versions of the standard timer functions.
+ */
+ useRealTimers(): Jest;
+ /**
+ * `jest.isolateModules(fn)` goes a step further than `jest.resetModules()`
+ * and creates a sandbox registry for the modules that are loaded inside
+ * the callback function. This is useful to isolate specific modules for
+ * every test so that local module state doesn't conflict between tests.
+ */
+ isolateModules(fn: () => void): Jest;
+ /**
+ * When mocking time, `Date.now()` will also be mocked. If you for some reason need access to the real current time, you can invoke this function.
+ *
+ * > Note: This function is only available when using Lolex as fake timers implementation
+ */
+ getRealSystemTime(): number;
+ /**
+ * Set the current system time used by fake timers. Simulates a user changing the system clock while your program is running. It affects the current time but it does not in itself cause e.g. timers to fire; they will fire exactly as they would have done without the call to `jest.setSystemTime()`.
+ *
+ * > Note: This function is only available when using Lolex as fake timers implementation
+ */
+ setSystemTime(now?: number | Date): void;
+}
diff --git a/node_modules/@jest/environment/build/index.js b/node_modules/@jest/environment/build/index.js
new file mode 100644
index 0000000..ad9a93a
--- /dev/null
+++ b/node_modules/@jest/environment/build/index.js
@@ -0,0 +1 @@
+'use strict';
diff --git a/node_modules/@jest/environment/package.json b/node_modules/@jest/environment/package.json
new file mode 100644
index 0000000..96ef04d
--- /dev/null
+++ b/node_modules/@jest/environment/package.json
@@ -0,0 +1,32 @@
+{
+ "name": "@jest/environment",
+ "version": "27.5.1",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/facebook/jest.git",
+ "directory": "packages/jest-environment"
+ },
+ "license": "MIT",
+ "main": "./build/index.js",
+ "types": "./build/index.d.ts",
+ "exports": {
+ ".": {
+ "types": "./build/index.d.ts",
+ "default": "./build/index.js"
+ },
+ "./package.json": "./package.json"
+ },
+ "dependencies": {
+ "@jest/fake-timers": "^27.5.1",
+ "@jest/types": "^27.5.1",
+ "@types/node": "*",
+ "jest-mock": "^27.5.1"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
+ },
+ "publishConfig": {
+ "access": "public"
+ },
+ "gitHead": "67c1aa20c5fec31366d733e901fee2b981cb1850"
+}