Skip to content

Commit 52c4be0

Browse files
authored
Revert "Upgrade @playwright/test and cleanup internal APIs" (#77814)
Reverts #77659 [x-ref](https://vercel.slack.com/archives/C03KAR5DCKC/p1743745064109939?thread_ts=1743528456.364379&cid=C03KAR5DCKC)
1 parent f6557ff commit 52c4be0

File tree

3 files changed

+48
-27
lines changed

3 files changed

+48
-27
lines changed

packages/next/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
},
111111
"peerDependencies": {
112112
"@opentelemetry/api": "^1.1.0",
113-
"@playwright/test": "^1.51.1",
113+
"@playwright/test": "^1.41.2",
114114
"babel-plugin-react-compiler": "*",
115115
"react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
116116
"react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
@@ -170,7 +170,7 @@
170170
"@next/react-refresh-utils": "15.3.0-canary.34",
171171
"@next/swc": "15.3.0-canary.34",
172172
"@opentelemetry/api": "1.6.0",
173-
"@playwright/test": "1.51.1",
173+
"@playwright/test": "1.41.2",
174174
"@storybook/addon-a11y": "8.6.0",
175175
"@storybook/addon-essentials": "8.6.0",
176176
"@storybook/addon-interactions": "8.6.0",

packages/next/src/experimental/testmode/playwright/step.ts

+21-1
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,33 @@ export interface StepProps {
99
params?: Record<string, string | number | boolean | null | undefined>
1010
}
1111

12+
// Access the internal Playwright API until it's exposed publicly.
13+
// See https://github.com/microsoft/playwright/issues/27059.
14+
interface TestInfoWithRunAsStep extends TestInfo {
15+
_runAsStep: <T>(
16+
stepInfo: StepProps,
17+
handler: (result: { complete: Complete }) => Promise<T>
18+
) => Promise<T>
19+
}
20+
1221
type Complete = (result: { error?: any }) => void
1322

23+
function isWithRunAsStep(
24+
testInfo: TestInfo
25+
): testInfo is TestInfoWithRunAsStep {
26+
return '_runAsStep' in testInfo
27+
}
28+
1429
export async function step<T>(
15-
_testInfo: TestInfo,
30+
testInfo: TestInfo,
1631
props: StepProps,
1732
handler: (complete: Complete) => Promise<Awaited<T>>
1833
): Promise<Awaited<T>> {
34+
if (isWithRunAsStep(testInfo)) {
35+
return testInfo._runAsStep(props, ({ complete }) => handler(complete))
36+
}
37+
38+
// Fallback to the `test.step()`.
1939
let result: Awaited<T>
2040
let reportedError: any
2141
try {

pnpm-lock.yaml

+25-24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)