mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
fix: fix react-native
string used in framework check of imageSnapshot
Framework name should match the one used in framework loader (in this case React Native loader: https://github.com/storybookjs/storybook/pull/7674/files#diff-d72af9277db9c8a6cb1b3595750de8c4R9)
This commit is contained in:
parent
de01450d4f
commit
16170f2d96
@ -40,7 +40,7 @@ export const imageSnapshot = (customConfig: Partial<ImageSnapshotConfig> = {}) =
|
||||
|
||||
const testFn = async ({ context }: any) => {
|
||||
const { kind, framework, name } = context;
|
||||
if (framework === 'rn') {
|
||||
if (framework === 'react-native') {
|
||||
// Skip tests since we de not support RN image snapshots.
|
||||
logger.error(
|
||||
"It seems you are running imageSnapshot on RN app and it's not supported. Skipping test."
|
||||
|
Loading…
x
Reference in New Issue
Block a user