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:
Gaëtan Maisse 2019-10-05 15:41:05 +02:00
parent de01450d4f
commit 16170f2d96

View File

@ -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."