Skip to content

Commit 30b33a8

Browse files
committed
Remove backticks from file names
1 parent 8267dae commit 30b33a8

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

node-src/tasks/prepare.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ Invalid React Native Storybook build in directory /static`
222222
announcedBuild: { browsers: ['android'] },
223223
} as any;
224224
await expect(validateFiles(ctx)).rejects.toThrow(
225-
`→ This build is missing the \`storybook.apk\` file required for React Native Storybook for Android.
225+
`→ This build is missing the storybook.apk file required for React Native Storybook for Android.
226226
Please ensure that the file is present in the output directory and named correctly before running the CLI.
227227
228228
Invalid React Native Storybook build in directory /static`
@@ -296,7 +296,7 @@ Invalid React Native Storybook build in directory /static`
296296
announcedBuild: { browsers: ['ios'] },
297297
} as any;
298298
await expect(validateFiles(ctx)).rejects.toThrow(
299-
`→ This build is missing the \`storybook.app\` file required for React Native Storybook for iOS.
299+
`→ This build is missing the storybook.app file required for React Native Storybook for iOS.
300300
Please ensure that the file is present in the output directory and named correctly before running the CLI.
301301
302302
Invalid React Native Storybook build in directory /static`
@@ -319,8 +319,8 @@ Invalid React Native Storybook build in directory /static`
319319
announcedBuild: { browsers: ['android', 'ios'] },
320320
} as any;
321321
await expect(validateFiles(ctx)).rejects.toThrow(
322-
` → This build is missing the \`storybook.app\` (iOS) and \`storybook.apk\` (Android) files required for React Native Storybook.
323-
Please ensure that the files are present in the output directory and named correctly before running the CLI.
322+
`→ This build is missing the storybook.app (iOS) and storybook.apk (Android) files required for React Native Storybook.
323+
Please ensure that the files are present in the output directory and named correctly before running the CLI.
324324
325325
Invalid React Native Storybook build in directory /static`
326326
);

node-src/ui/tasks/prepare.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ export const invalidReactNative = (ctx: Context, missingFiles: string[] = []) =>
4242

4343
if (hasAndroid && hasIOS) {
4444
lines.push(
45-
' → This build is missing the `storybook.app` (iOS) and `storybook.apk` (Android) files required for React Native Storybook.',
46-
' Please ensure that the files are present in the output directory and named correctly before running the CLI.'
45+
'→ This build is missing the storybook.app (iOS) and storybook.apk (Android) files required for React Native Storybook.',
46+
' Please ensure that the files are present in the output directory and named correctly before running the CLI.'
4747
);
4848
} else if (hasAndroid) {
4949
lines.push(
50-
'→ This build is missing the `storybook.apk` file required for React Native Storybook for Android.',
50+
'→ This build is missing the storybook.apk file required for React Native Storybook for Android.',
5151
' Please ensure that the file is present in the output directory and named correctly before running the CLI.'
5252
);
5353
} else if (hasIOS) {
5454
lines.push(
55-
'→ This build is missing the `storybook.app` file required for React Native Storybook for iOS.',
55+
'→ This build is missing the storybook.app file required for React Native Storybook for iOS.',
5656
' Please ensure that the file is present in the output directory and named correctly before running the CLI.'
5757
);
5858
}

0 commit comments

Comments
 (0)