diff --git a/tests/shared/imageTest.tsx b/tests/shared/imageTest.tsx index 5329e07a57..000045dfa3 100644 --- a/tests/shared/imageTest.tsx +++ b/tests/shared/imageTest.tsx @@ -3,6 +3,7 @@ import React from 'react'; // eslint-disable-next-line import/no-unresolved import { createCache, extractStyle, StyleProvider } from '@ant-design/cssinjs'; import dayjs from 'dayjs'; +import path from 'path'; import { globSync } from 'glob'; import { configureToMatchImageSnapshot } from 'jest-image-snapshot'; import MockDate from 'mockdate'; @@ -29,7 +30,11 @@ interface ImageTestOptions { } // eslint-disable-next-line jest/no-export -export default function imageTest(component: React.ReactElement, options: ImageTestOptions) { +export default function imageTest( + component: React.ReactElement, + identifier: string, + options: ImageTestOptions, +) { function test(name: string, themedComponent: React.ReactElement) { it(name, async () => { await jestPuppeteer.resetPage(); @@ -80,7 +85,9 @@ export default function imageTest(component: React.ReactElement, options: ImageT fullPage: !options.onlyViewport, }); - expect(image).toMatchImageSnapshot(); + expect(image).toMatchImageSnapshot({ + customSnapshotIdentifier: `${identifier}-${name.replace(/\s/g, '-')}`, + }); MockDate.reset(); page.off('request', onRequestHandle); @@ -96,7 +103,7 @@ export default function imageTest(component: React.ReactElement, options: ImageT , ); test( - `[CSS Var] component image screenshot should correct ${key}`, + `component image screenshot should correct ${key}.css-var`,