Skip to content

Commit

Permalink
Make tests failed as expected
Browse files Browse the repository at this point in the history
  • Loading branch information
Brooooooklyn committed Apr 12, 2022
1 parent a9d6d9f commit defab5c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion test/e2e/type-module-interop/index.test.ts
Expand Up @@ -11,8 +11,17 @@ describe('Type module interop', () => {
next = await createNext({
files: {
'pages/index.js': `
import Link from 'next/link'
export default function Page() {
return <p>hello world</p>
return (
<>
<p>hello world</p>
<Link href="/modules">
<a id="link-to-module">link to module</a>
</Link>
</>
)
}
`,
'pages/modules.jsx': `
Expand Down

0 comments on commit defab5c

Please sign in to comment.