@types/jest-specific-snapshot
TypeScript icon, indicating that this package has built-in type declarations

0.5.9 • Public • Published

Installation

npm install --save @types/jest-specific-snapshot

Summary

This package contains type definitions for jest-specific-snapshot (https://github.com/igor-dv/jest-specific-snapshot#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jest-specific-snapshot.

index.d.ts

/// <reference types="jest" />

declare global {
    namespace jest {
        interface Matchers<R, T> {
            toMatchSpecificSnapshot(snapshotFilename: string): R;
        }
    }
}

/**
 * Specify the serializer that should be used by toMatchSpecificSnapshot.
 * Note: toMatchSpecificSnapshot ignores the existing jest snapshot serializer settings. If you want to use a custom serializer,
 * you need to set it via this addSerializer function.
 */
export function addSerializer(serializer: any): void;

/**
 * This is used to create a customized version of toMatchSpecificSnapshot.
 */
export function toMatchSpecificSnapshot(
    data: any,
    snapshotFile: string,
    testName: string,
): () => { message(): string; pass: boolean };

Additional Details

  • Last updated: Tue, 07 Nov 2023 03:09:37 GMT
  • Dependencies: @types/jest

Credits

These definitions were written by Janeene Beeforth.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/jest-specific-snapshot

Weekly Downloads

184,032

Version

0.5.9

License

MIT

Unpacked Size

4.23 kB

Total Files

5

Last publish

Collaborators

  • types