forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update tests root->app (vercel#37477)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
- Loading branch information
1 parent
020471b
commit b3e1c11
Showing
15 changed files
with
29 additions
and
29 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
test/e2e/app-dir/app/app/(rootonly)/dashboard/changelog/page.server.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export default function ChangelogPage(props) { | ||
return ( | ||
<> | ||
<p>hello from root/dashboard/changelog</p> | ||
<p>hello from app/dashboard/changelog</p> | ||
</> | ||
) | ||
} |
2 changes: 1 addition & 1 deletion
2
test/e2e/app-dir/app/app/(rootonly)/dashboard/hello/page.server.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export default function HelloPage(props) { | ||
return ( | ||
<> | ||
<p>hello from root/dashboard/rootonly/hello</p> | ||
<p>hello from app/dashboard/rootonly/hello</p> | ||
</> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export default function ClientPage() { | ||
return ( | ||
<> | ||
<p>hello from root/client-nested</p> | ||
<p>hello from app/client-nested</p> | ||
</> | ||
) | ||
} |
2 changes: 1 addition & 1 deletion
2
test/e2e/app-dir/app/app/dashboard/(custom)/deployments/breakdown/page.server.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export default function DeploymentsBreakdownPage(props) { | ||
return ( | ||
<> | ||
<p>hello from root/dashboard/(custom)/deployments/breakdown</p> | ||
<p>hello from app/dashboard/(custom)/deployments/breakdown</p> | ||
</> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
test/e2e/app-dir/app/app/dashboard/deployments/info/page.server.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export default function DeploymentsInfoPage(props) { | ||
return ( | ||
<> | ||
<p>hello from root/dashboard/deployments/info</p> | ||
<p>hello from app/dashboard/deployments/info</p> | ||
</> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export default function DashboardIndexPage() { | ||
return ( | ||
<> | ||
<p>hello from root/dashboard/index</p> | ||
<p>hello from app/dashboard/index</p> | ||
</> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export default function IntegrationsPage(props) { | ||
return ( | ||
<> | ||
<p>hello from root/dashboard/integrations</p> | ||
<p>hello from app/dashboard/integrations</p> | ||
</> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export default function DashboardPage(props) { | ||
return ( | ||
<> | ||
<p>hello from root/dashboard</p> | ||
<p>hello from app/dashboard</p> | ||
</> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export default function SharedComponentRoute() { | ||
return ( | ||
<> | ||
<p>hello from root/shared-component-route</p> | ||
<p>hello from app/shared-component-route</p> | ||
</> | ||
) | ||
} |
2 changes: 1 addition & 1 deletion
2
test/e2e/app-dir/app/app/should-not-serve-client/page.client.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export default function ShouldNotServeClientDotJs(props) { | ||
return ( | ||
<> | ||
<p>hello from root/should-not-serve-client</p> | ||
<p>hello from app/should-not-serve-client</p> | ||
</> | ||
) | ||
} |
2 changes: 1 addition & 1 deletion
2
test/e2e/app-dir/app/app/should-not-serve-server/page.server.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export default function ShouldNotServeServerDotJs(props) { | ||
return ( | ||
<> | ||
<p>hello from root/should-not-serve-server</p> | ||
<p>hello from app/should-not-serve-server</p> | ||
</> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters