Skip to content

Commit

Permalink
remove windows slashes from invalid characters.
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterShershov committed Dec 25, 2024
1 parent e0bc765 commit db3a14c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/define-remix-app/test/define-remix.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1062,7 +1062,7 @@ describe('define-remix', () => {
const { driver } = await getInitialManifest({
[indexPath]: simpleLayout,
});
const invalidFsChars = ['\\', ':', '*', '?', '"', "'", '`', '<', '>', '|'];
const invalidFsChars = [':', '*', '?', '"', "'", '`', '<', '>', '|'];
for (const invalidChar of invalidFsChars) {
const { isValid, errorMessage, pageModule, newPageRoute, newPageSourceCode } =
driver.getNewPageInfo('about/$param/invalid-' + invalidChar);
Expand Down

0 comments on commit db3a14c

Please sign in to comment.