jest-collector
v1.1.1
Published
A tool for testing imported functions and or React components and its hooks or lifecycles.
Downloads
14
Maintainers
Readme
Table of Contents
- Getting Started
- About
- Next versions
- List of Collected Hooks
- Configuration
- Documentation
- Examples
- License
Getting Started
Install Jest Collector using yarn
:
yarn add --dev jest-collector
or npm
:
npm install --save-dev jest-collector
About
The Jest Collector is a tool for mocking all imports and collect data about the functions. It primarily targets React components, but it can be used for regular functions and classes as well. The collector stores information about the function/component, all calls, every hook, and a parent tree.
This tool provides a way of testing how many times your component has been rendered (called) if it contains the correct properties or if you used correct dependencies in React hooks such as in useEffect
, useCallback
or in useMemo
.
The Jest Collector will not be useful for unit tests, but it is very helpful for integration tests. While working on formco
, which is far from being released, I wanted to test the performance of the components. I realized that I knew very little about React and how the hooks worked under the hood. Let's suppose that the Jest Collector does not influence React. Then we can develop our component by a test-driven development and use the Jest Collector to see if everything works as expected. At the end, we can test the whole result of our work, prevent useless renders, and improve the performance.
To better understand it, check out the examples
.
NOTE: The react class components are not fully implemented yet!
Next versions
There are plans for upcoming versions:
- 1.1.0 - Full React class component support
- 1.2.0 - Support Redux
- 1.3.0 - Support Mobx
- 1.4.0 - Mock all methods of a class
List of Collected Hooks
These hooks are processed by the collector:
useCallback
, useContext
, useEffect
, useMemo
, useReducer
, useRef
, useState
Configuration
Jest Collector must be run before all tests, because it uses jest.mock
as the main function to collect the data. Therefore, it is needed to set a setup file in setupFilesAfterEnv
and register collector
name in globals to be able use it in the tests.
Set the needed options in package.json
or in jest.config.js
.
// package.json
{
"jest": {
"globals": {
"collector": null
},
"setupFilesAfterEnv": [
"./jest.setup.js"
]
}
}
or
// jest.config.js
module.exports = async () => {
return {
globals: {
collector: null
},
setupFilesAfterEnv: [
"./jest.setup.js"
]
};
};
Now create jest.setup.js
to create the collector and set the root folder of your source code. In this case I set "src" as the root folder.
NOTE: Files ending with
.test.ts
,.test.tsx
,.test.js
or.test.jsx
and all__tests__
folders are excluded from being mocked.
// jest.setup.js
const { createCollector } = require("jest-collector");
createCollector({
roots: ["src"]
});
Create Collector Options
exclude
[an array of matches]
The collector is created for each test by default. In case you want to exclude a test from being processed by the collector, you can use the exclude
option. You can provide a match
pattern.
Example:
// it will exclude the "custom.test.ts" directly under the "src"
createColector({
exclude: ["src/custom.test.ts"],
roots: ["src"]
});
excludeImports
[an array of matches]
The collector mocks every file and its exports by default. In case you want to exclude a file from being processed and mocked by the collector, you can use the excludeImports
option. You can provide a match
pattern.
NOTE: Excluded files are not considered in the parent tree in the collector.
Example:
// it will not mock the "custom.ts" directly under the "src"
createColector({
excludeImports: ["src/custom.ts"],
roots: ["src"]
});
extensions
[an array of file extensions]
By default, the extensions are set to .ts
and .js
. You can set an additional extension. A new set of extensions will replace the default set. This means that if you set the extensions
option to [.ts]
, the collector will mock the exports only from TypesSript files. If you provide an empty array, the collector will try to mock all files matching other options.
Example:
// exports from all JavaScript and TypesSript files will be mocked
createColector({
extensions: [".ts", ".js"],
roots: ["src"]
});
include
[an array of matches]
The collector is created for each test by default. In case you want to include only a specific test to being processed by the collector, you can use the include
option. Only the tests matching the include
array will be processed by the collector. If there is a match in exclude
option for the same test file as in include
, the test will not be processed by the collector. You can provide a match
pattern.
Example:
// it will include only the "custom.test.ts" directly in "src"
createColector({
include: ["src/custom.test.ts"],
roots: ["src"]
});
includeImports
[an array of matches]
The collector mocks every file with exports by default. In case you want to include only a specific file to being processed and mocked by the collector, you can use the includeImports
option. If there is a match in excludeImports
option for the same file as in includeImports
, the file will not be processed by the collector. You can provide a match
pattern.
Example:
// it will mock only the "custom.ts" directly under the "src"
createColector({
includeImports: ["src/custom.ts"],
roots: ["src"]
});
roots
[an array of folders]
The collector requires at least one root folder of your source code set in the roots
option. You can set more folders. A folder has to have a relative path to the Jest process. All files matching the other options will be mocked and processed by the Jest Collector. If you do not set the other options, all TypeScript and JavaScript files will be mocked and processed.
Let's say you have two folders "admin" and "src" in your repository:
.
..
admin
src
jest.setup.js
package.json
You can set both folders with:
createColector({ roots: ["admin", "src"] });
If you would like to set an inner folder, it is possible:
createColector({ roots: ["src/inner-folder"] });
Matches
There are examples using a match pattern:
// it matches any file in any folder under the "src/utils"
"src/utils/**/*"
// it matches "custom.ts" directly under the "src"
"src/custom.ts"
// it matches all files in any folder under the "src" ending with ".exclude.test.ts"
"src/**/*.exclude.test.ts"
// it matches all files in any folder under the "src" ending with ".exclude.test.ts"
// or ".exclude.test.tsx"
"src/**/*.exclude.test.(ts|tsx)"
// it matches all files with the name "utils.ts" in every folder
"**/*/utils.ts"
// it matches all files with the name "utils.ts" in the first tree folder under
// the "src". It matches "src/folder/utils.ts" but not "src/utils.ts"
// or "src/folder/folder/utils.ts"
"src/**/utils.ts"
// it matches all files directly under the "src" ending with ".utils.ts",
// for example "src/tool.utils.ts"
"src/*.utils.ts"
NOTE: Matches are case sensitive. Always use UNIX file system style even when you run the tests under Windows.
Documentation
If you use TypeScript, add a file with declaration to your source code:
// globals.ts
import { Collector } from "jest-collector";
declare global {
var collector: Collector;
}
enableDataTestIdInheritance
// inheritance is disabled by default
enableDataTestIdInheritance(excludeNotMockedElements?: boolean): void
Each component should have a data-testid to be easily identified. In case you do not want to set a data-testid to each component and you want to inherit data-testid from the parent, you can enable inheritance. When inheritance is enabled, each component with no data-testid will try to inherit the data-testid from the parent. It works for both not mocked and mocked elements.
IMPORTANT: When testing, a mocked component must be at the highest level to inherit the data-testid correctly.
Examples:
// enable inheritance
collector.enableDataTestIdInheritance();
// SimpleComponent will inherit the data-testid
render(
<MockedComponent data-testid="test-id">
<SimpleComponent />
</MockedComponent>
);
// SimpleComponent will be registered in the collector with the "test-id"
expect(collector.hasComponent(SimpleComponent.name, { dataTestId: "test-id" })).toBeTruthy();
// enable inheritance
collector.enableDataTestIdInheritance();
// SimpleComponent will inherit the data-testid
render(
<MockedComponent>
<div data-testid="test-id">
<SimpleComponent />
</div>
</MockedComponent>
);
// SimpleComponent will be registered in the collector with the "test-id"
expect(collector.hasComponent(SimpleComponent.name, { dataTestId: "test-id" })).toBeTruthy();
Exclude Not Mocked Components
When you would like to exclude not mocked components from data-testid inheritance, call enableDataTestIdInheritance
with true
.
Examples:
// enable inheritance
collector.enableDataTestIdInheritance(true);
// SimpleComponent will inherit the data-testid if Component
// is mocked by the collector
render(
<Component data-testid="test-id">
<SimpleComponent />
</Component>
);
// SimpleComponent will be registered in the collector with the "test-id"
expect(collector.hasComponent(SimpleComponent.name, { dataTestId: "test-id" })).toBeTruthy();
// enable inheritance
collector.enableDataTestIdInheritance(true);
// SimpleComponent will inherit the data-testid from Component
// if it is mocked by the collector. The "test-id-2" will
// be ignored
render(
<Component data-testid="test-id-1">
<div data-testid="test-id-2">
<SimpleComponent />
</div>
</Component>
);
// SimpleComponent will be registered in the collector with the "test-id-1"
expect(collector.hasComponent(SimpleComponent.name, { dataTestId: "test-id-1" })).toBeTruthy();
// there will be no SimpleComponent with the "test-id-2"
expect(collector.hasComponent(SimpleComponent.name, { dataTestId: "test-id-2" })).toBeFalsy();
disableDataTestIdInheritance
disableDataTestIdInheritance(): void
If you would like to disable a previously-enabled inheritance, you can call disableDataTestIdInheritance
or reset
Example:
collector.disableDataTestIdInheritance();
getCallCount
getCallCount(name: string, options?: Options): number | undefined
References:
Get the number of calls of the function/React component. If the component is a React class component, the returned number will be a number of how many times the render
method was called.
Examples:
render(
<SimpleComponent />
);
// SimpleComponent will be called once
expect(collector.getCallCount(SimpleComponent.name)).toBe(1);
// these components are difficult to identify, both are under the root
// and they do not have a data-testid. Therefore they will be considered
// as one
render(
<>
<SimpleComponent />
<SimpleComponent />
</>
);
// SimpleComponent will be called twice
expect(collector.getCallCount(SimpleComponent.name)).toBe(2);
// when the parent is a mocked component, the children components
// will be registered with nthChild property to identify them
render(
<MockedComponent>
<SimpleComponent />
<SimpleComponent />
</MockedComponent>
);
// SimpleComponent will be called twice
expect(collector.getCallCount(SimpleComponent.name)).toBe(2);
// the first SimpleComponent under MockedComponent will be called once
expect(collector.getCallCount(SimpleComponent.name, { nthChild: 1 })).toBe(1);
// the second SimpleComponent under MockedComponent will be called once
expect(collector.getCallCount(SimpleComponent.name, { nthChild: 2 })).toBe(1);
// the third SimpleComponent under MockedComponent will not exist
expect(collector.getCallCount(SimpleComponent.name, { nthChild: 3 })).toBeUndefined();
// get the components by a parent
render(
<>
<MockedComponent>
<SimpleComponent />
<SimpleComponent />
</MockedComponent>
<SimpleComponent />
</>
);
// SimpleComponent will be called twice
expect(collector.getCallCount(SimpleComponent.name)).toBe(3);
// there are two SimpleComponents under MockedComponent
expect(collector.getCallCount(SimpleComponent.name, { parent: { name: MockedComponent.name } })).toBe(2);
// there is only one SimpleComponent under the root
expect(collector.getCallCount(SimpleComponent.name, { parent: null })).toBe(1);
If the component has a useState
or useReducer
hook, it can be called multiple times. You can check the call count of a regular function as well. Then you can test if the function was called (rendered) as many times as you expected.
getComponentData
getComponentData(componentName: string, options?: Options): RegisteredFunction<unknown> | undefined
References:
This function is the same as getDataFor. You can use it for better orientation when working with React components.
getAllDataFor
getAllDataFor(name: string, options?: Options): RegisteredFunction[]
getAllDataFor(options: OptionsWithName): RegisteredFunction[]
interface OptionsWithName extends Options {
name?: string;
}
References:
This method is more or less the same as getDataFor
. It returns an array of all found registered functions/components in the collector and it does not log a warning if there are more functions/components matching the name and options.
Examples:
// it returns an array of found results for SimpleComponent
collector.getAllDataFor(SimpleComponent.name);
getDataFor
getDataFor(name: string, options?: Options): RegisteredFunction | undefined
References:
The method returns an object with data about the registered function/component if it is found. If there are more results matching the name and options, a warning will be shown in the console.
There is a difference between the function, the React functional component, and the React class component. All of them contain the calls
, current
, jestFn
and parent
property. The React functional component contains the additional hooks
property and the React class component contains the additional lifecycle
property.
Returned Object Properties
calls
- An array of calls.
args
- An array of passed arguments when the function/component was called.stats
- An object with statistics about the call. Containstime
which is the time in milliseconds when the function/component was executed. In the React components, it does not mean that the whole component was executed at that time because React executes a component and then its children separately. The children are not included in the time.result
- Any result from the function/component.
current
- An object with the identity of the function/component.
dataTestId
- data-testid if it was provided to the component.name
- A name of the function/component.nthChild
- The number of sequence. If there are more identical React components rendered in parallel in a mocked parent, the nthChild property will be provided with the number of the render sequence of the component. This is needed in order to register the components separately, because they are not the same. They can contain different arguments and provide different results.originMock
- A boolean. True means, the function/component was originally mocked by thecreateCollector
. False means the function/component was mocked during the process because of its identification and identification of its children.relativePath
- A string with relative path of the function/component. It is always in Linux file system format with no back slashes.
hooks
- An object with hooks. More info in getReactHooks
.
jestFn
- A jest.fn
which contains data about each call and its returns. Similar to the calls
property. The difference is this is a jest.Mock function. For more info, read the jest.fn documentation
.
lifecycle
- An object with the React class lifecycle. More info in getReactLifecycle
.
parent
- An object with info about the parent. The object is a RegisteredFunction
type, so it means it contains the same properties as above.
getReactHooks
getReactHooks(componentName: string, options?: Options): {
getAll(): ReactHooks | undefined;
getAll(hookType: HookType): ReactHooks[typeof hookType][] | undefined;
getHook(hookType: HookType, sequence: number): ReactHooks[typeof hookType] | undefined;
getHooksByType(hookType: HookType): {
get(sequence: number): ReactHooks[typeof hookType] | undefined;
};
getUseReducer(sequence: number): {
getState(stateSequence: number): unknown | undefined;
next(): unknown[];
reset(): void;
};
getUseState(sequence: number): {
getState(stateSequence: number): unknown | undefined;
next(): unknown[];
reset(): void;
};
} | undefined
type HookType = "useCallback" | "useContext" | "useEffect" | "useMemo" | "useReducer" | "useRef" | "useState"
The return of the method provides functions for more comfortable work with hooks and its results. The mentioned hookType
above must be always a name of the hook. When the hookType
is provided, the result will be always the matching object to the hook
.
Returned Object Methods
getAll
- Returns an object or an array. You can get all React hooks as an object ReactHooks
if you do not pass a hook name. The object will contain only found hooks. So, if you use only useEffect
in your React component, you will find in the returned object only useEffect
. If you would like to get only a specific hook, provide the name of the hook and the result will be an array of all registered hooks. It means if you call getAll("useEffect")
and the React component contains two useEffects
, the returned array will have two objects in order how they were rendered.
getHook
- Returns an object if the hook with the sequence was found, otherwise it returns undefined. For example, when you have two useEffects
in your React component and you would like to get the second one, call getHook("useEffect", 2)
. The sequence always starts from one.
getHooksByType
- Returns an object. It helps if you would like to test more hooks and do not call getHook
for each time.
get
- Returns an object of the hook or undefined if the hook or sequence was not found. The sequence always starts from one.
getUseReducer
- Returns an object or undefined. The logic is the same as described below for getUseState
. The state is taken from return of useReducer
.
getUseState
- Returns an object or undefined if useState
does not exist or it was not found by the passed sequence. It helps to test specific useState
and its returns.
getState
- Any value. Get specific state result providing the state sequence. State sequence means the sequence of the state results. It means if you have oneuseState
and the React component was rendered twice, the state will have two results. You can get the first result by callinggetState(1)
or the second withgetState(2)
.next
- Returns an array of the states from the last call of this function. It means if your component was rendered twice, and you call thenext
, the return will be an array with two members. First member will be a result from the first render and the second member will be a result from the second render of the component. If the component will be no more rendered, the next call will return an empty array.reset
- When call this function, thenext
function will return the state results from the beginning.
ReactHooks Properties
Every function mentioned below is a jest.fn
.
useCallback
- an object
action
- A function passed toReact.useCallback
.deps
- An array passed toReact.useCallback
function as deps.hasBeenChanged
- A boolean. If the return fromReact.useCallback
has been changed, this property will be true.
useContext
- an object
args
- Arguments passed toReact.useContext
.context
- Result ofReact.useContext
.
useEffect
- an object
action
- A function passed toReact.useEffect
deps
- An array passed toReact.useEffect
function as deps.unmount
- A function or undefined. IfReact.useEffect
contains return, it is considered asunmount
function called whenReact.useEffect
is changed because of the component was unmounted or because of the deps.
useMemo
- an object
args
- Arguments passed toReact.useMemo
.hasBeenChanged
- A boolean. If the return fromReact.useMemo
has been changed, this property will be true.result
- A function or any value. If the result fromReact.useMemo
is a function, it will be mocked withjest.fn
. Otherwise, it can be a string, a number, an object, etc.
useRef
- an object
args
- Arguments passed toReact.useRef
.hasBeenChanged
- A boolean. This property will be always false if React works correctly.ref
- An object with thecurrent
property which can be undefined or any value. It is a result fromReact.useRef
.
useReducer
- an object
dispatch
- A function returned fromReact.useReducer
.initialState
- An object passed toReact.useReducer
as the initial value.reducer
- A function passed toReact.useReducer
as a reducer.state
- An array of any value. State results fromReact.useReducer
.
useState
- an object
initialState
- An object passed toReact.useState
as the initial value.setState
- A function returned fromReact.useState
state
- An array of any value. State results fromReact.useState
.
Examples:
const deps = [];
const action = jest.fn();
const unmountAction = jest.fn();
const Component = () => {
const [state, setState] = React.useState(10);
React.useEffect(() => {
action();
return unmountAction;
}, deps)
return (
<button onClick={() => setState(state + 1)}>Increase</button>
)
}
// to make it work with this example, MockedComponent
// must be a component mocked by createCollector
const { unmount } = render(
<MockedComponent>
<Component />
</MockedComponent>
);
const reactHooks = collector.getReactHooks(Component.name);
// returned object will have two properties, useEffect and useState
expect(reactHooks?.getAll()).toMatchInlineSnapshot(`
Object {
"useEffect": Array [
Object {
"action": [MockFunction] {
"calls": Array [
Array [],
],
"results": Array [
Object {
"type": "return",
"value": [MockFunction],
},
],
},
"deps": Array [],
"unmount": [MockFunction],
},
],
"useState": Array [
Object {
"initialState": 10,
"setState": [MockFunction],
"state": Array [
10,
],
},
],
}
`);
const useEffectHooks = reactHooks?.getHooksByType("useEffect");
// first useEffect will exist
expect(useEffectHooks?.get(1)).not.toBeUndefined();
// useEffect will be called once
expect(useEffectHooks?.get(1)?.action).toBeCalledTimes(1);
// second useEffect will not exist
expect(useEffectHooks?.get(2)).toBeUndefined();
// the unmount action will be not called
expect(useEffectHooks?.get(1)?.unmount).not.toBeCalled();
// the result will be the same. There are two ways to
// get the specific hook
expect(reactHooks?.getHook("useEffect", 1)).toEqual(useEffectHooks?.get(1));
const firstUseState = reactHooks?.getUseState(1);
// there is one useState, so it should exist
expect(firstUseState).not.toBeUndefined();
// the first result of useState will be the initial value
expect(firstUseState?.getState(1)).toEqual(10);
// increase the state
fireEvent.click(screen.getByRole("button"));
// the action of useEffect will be still called once
// because useEffect did not change by the deps
expect(useEffectHooks?.get(1)?.action).toBeCalledTimes(1);
// the unmount action will not be called
expect(useEffectHooks?.get(1)?.unmount).not.toBeCalled();
// the next result of the state will be the initial value + 1
expect(firstUseState?.getState(2)).toEqual(11);
// the result from useState since first render will
// be an array with two numbers: The first and the second
// state result
expect(firstUseState?.next()).toEqual([10, 11]);
// the next call will return an empty array because the
// state has not been changed since last call of the
// next function
expect(firstUseState?.next()).toEqual([]);
// increase the state
fireEvent.click(screen.getByRole("button"));
// new state result will be the initial value + 2
expect(firstUseState?.next()).toEqual([12]);
// reset the state counter
firstUseState?.reset()
// the next call will return all state results
// since the first render
expect(firstUseState?.next()).toEqual([10, 11, 12]);
// unmount the component manually
unmount();
// the unmount action will be called
expect(useEffectHooks?.get(1)?.unmount).toBeCalledTimes(1);
NOTE: For more realistic use cases, check out the
examples
.
getReactLifecycle
getReactLifecycle(componentName: string, options?: Options): ReactClassLifecycle | undefined
References:
When you would like to get all lifecycles for a React class component, you can use getReactLifecycle
method. The method returns an object with properties render
and setState
which are a jest.fn
.
You can check the following:
- how many times
render
has been called, - how many times
setState
has been called, - which arguments have been passed to
setState
and its returns.
For more information, read the jest.fn documentation
.
NOTE: The React class components are not fully implemented yet!
getStats
getStats(): Stats[]
getStats(options?: GetStatsOptions): Stats[]
getStats(name: string, options?: GetStatsOptions): Stats[] | Stats | undefined
interface GetStatsOptions extends Options {
excludeTime?: boolean;
}
References:
This method serves for getting statistics from the whole collector or for a specific function/component. Data includes statistics for each call, calling arguments and the result of the function or component. Because the time statistics are a dynamic number, you can exclude time from statistics with excludeTime
option. Excluding the time from statistics is needed for snapshots tests.
Examples:
// it returns statistics for all registered functions/components
collector.getStats();
// it returns statistics for all registered functions/components
// and it excludes time from every call stats
collector.getStats({ excludeTime: true });
// it returns statistics for all registered functions/components
// which do not have a parent, they are rendered on the top
// of the render tree. You can combine all available options
// get only specific components with data-testid or parent etc
collector.getStats({ parent: null });
// it returns statistics for SimpleComponent only. Every
// registered SimpleComponent will be included in the
// statisctics. If there will be only one result, it returns
// an object. If there will be more results, it returns an array
collector.getStats(SimpleComponent.name);
// it returns statistics for SimpleComponent with data-testid
// equal to "test-id". You can filter the results with other
// available options such as parent, nthChild etc. If there
// are more matching results, it returns an array
collector.getStats(SimpleComponent.name, { dataTestId: "test-id" });
hasComponent
hasComponent(componentName: string, options?: Options): boolean
References:
This function is the same as hasRegistered. You can use it for better orientation when working with React components.
hasRegistered
hasRegistered(name: string, options?: Options): boolean
References:
Checks if the function/component was registered by the Jest Collector.
Example:
render(<SimpleComponent />);
// checks if SimpleComponent is registered in the collector
expect(collector.hasRegistered(SimpleComponent.name)).tobeTruthy();
// or you can use "hasComponent"
expect(collector.hasComponent(SimpleComponent.name)).tobeTruthy();
reset
reset(): void
reset(name: string, options?: Options): void
References:
When you run more tests in the same test file, it is recommended to reset the collector data before running another test. Use beforeEach
with the reset:
beforeEach(() => {
collector.reset();
})
In case you want to remove a specific function or a component from the collector, you can do it providing a name and/or options.
// it will remove all registered SimpleComponents from the collector
collector.reset(SimpleComponent.name);
Interfaces
Call
interface Call {
args: unknown[];
stats: CallStats;
result?: unknown;
}
CallStats
interface CallStats {
time?: number;
}
Identity
interface Identity {
dataTestId: string | null;
name: string;
nthChild?: number;
originMock: boolean;
relativePath: string;
}
Options
interface Options {
dataTestId?: string | null;
ignoreWarning?: true;
nthChild?: number;
parent?: Parent | null;
relativePath?: string;
}
Parent
interface Parent {
dataTestId?: string | null;
name?: string;
nthChild?: number;
originMock?: boolean;
parent?: Parent | null;
relativePath?: string;
}
ReactClassLifecycle
interface ReactClassLifecycle {
render: jest.Mock;
setState: jest.Mock;
}
ReactHooks
interface ReactHooks {
useCallback: {
action: jest.Mock;
deps: unknown[];
hasBeenChanged: boolean;
}[];
useContext: {
args: unknown[];
context: unknown;
}[];
useEffect: {
action: jest.Mock;
deps: unknown[];
unmount?: jest.Mock;
}[];
useMemo: {
deps: unknown[];
hasBeenChanged: boolean;
result: jest.Mock | unknown;
}[];
useRef: {
args: unknown[];
hasBeenChanged: boolean;
ref: {
current?: unknown;
};
}[];
useReducer: {
dispatch: jest.Mock;
initialState: unknown;
reducer: jest.Mock;
state: unknown[];
}[];
useState: {
initialState: unknown;
setState: jest.Mock;
state: unknown[];
}[];
}
RegisteredFunction
interface RegisteredFunction {
calls: Call[];
current: Identity;
hooks?: ReactHooks; // only available in React functional components
jestFn: jest.Mock;
lifecycle?: ReactClassLifecycle; // only available in React class components
parent: RegisteredFunction | null;
}
Stats
interface Stats {
calls: Call[];
dataTestId: string | null;
name: string;
nthChild?: number;
numberOfCalls: number;
parent: Parent | null;
relativePath: string;
}
Examples
Check out the examples
.
License
Jest Collector is MIT licensed.