Skip to content

Commit

Permalink
change wording
Browse files Browse the repository at this point in the history
  • Loading branch information
ajwootto committed Dec 16, 2024
1 parent 129833f commit 2199d69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e/nextjs/app-router/app/app/normal/ClientComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const ClientComponent = () => {
<p>Client Disabled Variable: {JSON.stringify(disabledVar)}</p>
<p>Client All Variables: {JSON.stringify(allVariables)}</p>
<p>Client All Features: {JSON.stringify(allFeatures)}</p>
<p>Client Action Result: {JSON.stringify(actionResult)}</p>
<p>Server Function Result: {JSON.stringify(actionResult)}</p>
<button
onClick={() =>
testAction().then((result) => setActionResult(result))
Expand Down
2 changes: 1 addition & 1 deletion e2e/nextjs/app-router/tests/app-router.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ test('has expected page elements', async ({ page }) => {

// test server action flagging
await page.getByText('Test Action').click()
await expect(page.getByText('Client Action Result: true')).toBeVisible()
await expect(page.getByText('Server Function Result: true')).toBeVisible()

// test middleware flagging
await expect(
Expand Down

0 comments on commit 2199d69

Please sign in to comment.