Skip to content

Commit

Permalink
chore: remove unused test fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
idoros committed Oct 15, 2024
1 parent 730bd60 commit 3953512
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions packages/define-remix-app/test/test-cases/roots.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,34 +145,6 @@ export const rootWithLayout2 = transformTsx(`
return <div>Error</div>;
}
`);
export const rootWithLayoutAndLoader = transformTsx(`
import React from 'react';
import { Outlet, Links } from '@remix-run/react';
export function Layout({ children }: { children: React.ReactNode }) {
return (
<mock-ml lang="en">
<mock-header><Links/></mock-header>
<mock-body>
Layout|
{children}
</mock-body>
</mock-ml>
);
}
export default function App() {
return (
<div>
App|
<Outlet />
</div>
);
}
export function ErrorBoundary({ error }: { error: Error }) {
return <div>Error</div>;
}
`);
export const withHandle = (originalSrc: string, name: string) => {
return `
${originalSrc}
Expand Down

0 comments on commit 3953512

Please sign in to comment.