babel-plugin-tester
Version:
Utilities for testing babel plugins
10 lines • 433 B
TypeScript
import type { SnapshotSerializer } from "../index.js";
/**
* If you're using jest and snapshots, then the snapshot output could have a
* bunch of bothersome `\"` to escape quotes because when Jest serializes a
* string, it will wrap everything in double quotes.
*
* This snapshot serializer removes these quotes.
*/
export declare const unstringSnapshotSerializer: SnapshotSerializer;
export default unstringSnapshotSerializer;