forked from ant-design/ant-design
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps-dev): upgrade to jest 28 (ant-design#35334)
- Loading branch information
Showing
9 changed files
with
180 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
// Type definitions for jest-image-snapshot 4.3 | ||
// Project: https://github.com/americanexpress/jest-image-snapshot#readme | ||
// Definitions by: Janeene Beeforth <https://github.com/dawnmist> | ||
// erbridge <https://github.com/erbridge> | ||
// Piotr Błażejewicz <https://github.com/peterblazejewicz> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
// TypeScript Version: 3.8 | ||
|
||
/// <reference types="jest" /> | ||
|
||
declare module '@ant-design/jest-image-snapshot' { | ||
import { PixelmatchOptions } from 'pixelmatch'; | ||
import { Options as SSIMOptions } from 'ssim.js'; | ||
|
||
export interface MatchImageSnapshotOptions { | ||
/** | ||
* If set to true, the build will not fail when the screenshots to compare have different sizes. | ||
* | ||
* @default false | ||
*/ | ||
allowSizeMismatch?: boolean | undefined; | ||
/** Custom config passed to 'pixelmatch' or 'ssim' */ | ||
customDiffConfig?: PixelmatchOptions | Partial<SSIMOptions> | undefined; | ||
/** | ||
* The method by which images are compared. `pixelmatch` does a pixel by pixel comparison, | ||
* whereas `ssim` does a structural similarity comparison. | ||
* | ||
* @default 'pixelmatch' | ||
*/ | ||
comparisonMethod?: 'pixelmatch' | 'ssim' | undefined; | ||
/** Custom snapshots directory. Absolute path of a directory to keep the snapshot in. */ | ||
customSnapshotsDir?: string | undefined; | ||
/** A custom absolute path of a directory to keep this diff in */ | ||
customDiffDir?: string | undefined; | ||
/** | ||
* A custom name to give this snapshot. If not provided, one is computed automatically. When a | ||
* function is provided it is called with an object containing testPath, currentTestName, | ||
* counter and defaultIdentifier as its first argument. The function must return an identifier | ||
* to use for the snapshot. | ||
*/ | ||
customSnapshotIdentifier?: | ||
| ((parameters: { | ||
testPath: string; | ||
currentTestName: string; | ||
counter: number; | ||
defaultIdentifier: string; | ||
}) => string) | ||
| string | ||
| undefined; | ||
/** | ||
* Changes diff image layout direction. | ||
* | ||
* @default 'horizontal' | ||
*/ | ||
diffDirection?: 'horizontal' | 'vertical' | undefined; | ||
/** | ||
* Will output base64 string of a diff image to console in case of failed tests (in addition to | ||
* creating a diff image). This string can be copy-pasted to a browser address string to preview | ||
* the diff for a failed test. | ||
* | ||
* @default false | ||
*/ | ||
dumpDiffToConsole?: boolean | undefined; | ||
/** | ||
* Will output the image to the terminal using iTerm's Inline Images Protocol. If the term is | ||
* not compatible, it does the same thing as `dumpDiffToConsole`. | ||
* | ||
* @default false | ||
*/ | ||
dumpInlineDiffToConsole?: boolean | undefined; | ||
/** | ||
* Removes coloring from the console output, useful if storing the results to a file. | ||
* | ||
* @default false | ||
*/ | ||
noColors?: boolean | undefined; | ||
/** | ||
* Sets the threshold that would trigger a test failure based on the failureThresholdType | ||
* selected. This is different to the customDiffConfig.threshold above - the | ||
* customDiffConfig.threshold is the per pixel failure threshold, whereas this is the failure | ||
* threshold for the entire comparison. | ||
* | ||
* @default 0 | ||
*/ | ||
failureThreshold?: number | undefined; | ||
/** | ||
* Sets the type of threshold that would trigger a failure. | ||
* | ||
* @default 'pixel' | ||
*/ | ||
failureThresholdType?: 'pixel' | 'percent' | undefined; | ||
/** | ||
* Updates a snapshot even if it passed the threshold against the existing one. | ||
* | ||
* @default false | ||
*/ | ||
updatePassedSnapshot?: boolean | undefined; | ||
/** | ||
* Applies Gaussian Blur on compared images, accepts radius in pixels as value. Useful when you | ||
* have noise after scaling images per different resolutions on your target website, usually | ||
* setting its value to 1-2 should be enough to solve that problem. | ||
* | ||
* @default 0 | ||
*/ | ||
blur?: number | undefined; | ||
/** | ||
* Runs the diff in process without spawning a child process. | ||
* | ||
* @default false | ||
*/ | ||
runInProcess?: boolean | undefined; | ||
} | ||
|
||
/** | ||
* Function to be passed to jest's expect.extend. Example: import { toMatchImageSnapshot } from | ||
* 'jest-image-snapshot'; expect.extend({ toMatchImageSnapshot }); | ||
*/ | ||
export function toMatchImageSnapshot(options?: MatchImageSnapshotOptions): { | ||
message(): string; | ||
pass: boolean; | ||
}; | ||
|
||
/** | ||
* Configurable function that can be passed to jest's expect.extend. Example: import { | ||
* configureToMatchImageSnapshot } from 'jest-image-snapshot'; const toMatchImageSnapshot = | ||
* configureToMatchImageSnapshot({ noColors: true }); expect.extend({ toMatchImageSnapshot }); | ||
*/ | ||
export function configureToMatchImageSnapshot( | ||
options: MatchImageSnapshotOptions, | ||
): () => { message(): string; pass: boolean }; | ||
|
||
/** Mutates original state with new state */ | ||
export function updateSnapshotState<TObject, TPartial>( | ||
originalSnapshotState: TObject, | ||
partialSnapshotState: TPartial, | ||
): TObject & TPartial; | ||
|
||
declare global { | ||
namespace jest { | ||
interface Matchers<R, T> { | ||
toMatchImageSnapshot(options?: MatchImageSnapshotOptions): R; | ||
} | ||
} | ||
} | ||
} |