Skip to content

Commit

Permalink
Update @replayio/playwright (#353)
Browse files Browse the repository at this point in the history
This one makes sure that the `@replayio/reply` (transitive dependency)
gets updated too (u can see the change in the lockfile).

With this one, I can record this repo and I get recordings. Some fail at
times when the metadata's size gets exceeded. We know about the issue
and we are in the process of figuring out the solution.
  • Loading branch information
Andarist authored May 9, 2024
1 parent 5f9ef18 commit 8f63b71
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@playwright/test": "^1.37.0",
"@replayio/playwright": "3.0.0-alpha.7",
"@replayio/playwright": "3.0.0-alpha.9",
"@types/jest": "^29.5.3",
"@types/node": "^18.17.5",
"@types/react": "latest",
Expand Down
10 changes: 6 additions & 4 deletions packages/react-resizable-panels-website/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@ const config: PlaywrightTestConfig = {
},
],
reporter: [
createReplayReporterConfig({
apiKey: process.env.REPLAY_API_KEY,
upload: true,
}),
process.env.REPLAY_API_KEY
? createReplayReporterConfig({
apiKey: process.env.REPLAY_API_KEY,
upload: true,
})
: ["line"],
],
use: {
browserName: "chromium",
Expand Down
16 changes: 8 additions & 8 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8f63b71

Please sign in to comment.