Changelog 36: Test Suite Comments đź‘‹

Jason Laster
Replay
Published in
3 min readJul 15, 2022

Test Suite Comments are entering closed beta today! If you have a Playwright test suite, send us an email and we’ll set you up.

We’ve always been excited about making tests easier to debug. Nobody enjoys being blocked by a 🔴 badge. Scrolling through CI logs is frustrating. Figuring out why a random test failed is the worst.

Test Suite Comments are one of those features that you take for granted quickly. We added comments to our DevTools repo last week and within a day, everyone was using them and sharing replays in our Discord (video).

If you’re as excited as we are, reach out and we’ll help set you up. We’re just getting started too so watch this space!

Glide Case Study

If you’re looking for a case study on how Replay helps you record a bug and never worry about reproducing it again, this one is for you!

“Before Replay we spent somewhere between 1–2 hours per day per dev in this reproducibility purgatory. The toll this was taking on our development velocity and our ability to respond and resolve issues was huge. We thought there must be a better way.” — Mark Probst, CTO

Case Study

Performance

5X Faster Scope Mapping One of the biggest differences between Replay and Chrome DevTools is that Replay maps Files, Call Stacks, Scopes and Expressions. This means that when you open a replay, add a print statement, and jump to a console log, everything just works. Under the hood, we use Babel to parse the original and generated files and map the source locations and scopes.

Previously we were using Babel’s default traversal API which has scopes built in, but in the extreme case could take 50 seconds. We’re now using their faster traversal API which takes 9 seconds.

Architecture

One of the reasons we’re focusing on the frontend’s architecture is that Replay DevTools started as a fork of Firefox DevTools. While that was a good starting point, we’ve learned that there are simpler ways to model a time-travel debugger.

This week we deleted 13k lines of unused DevTools code (PR), migrated the source logic to TS (PR), and prepared an 8k line refactor of the sources logic (1, 2). Thank god for TypeScript, Hot Reloading, and Time Travel Debugging (video)!

The new architecture is far easier to understand and fine-tune. It will also be far easier for others to fork and experiment with their own designs 👨‍🎨

Additional Updates

  • Installing Certificates: We published docs on how to install certificates when getting setup.
  • Source Map Toggle: We fixed two issues jumping between original and generated files (1, 2)
  • Node SourceMaps: Inline source maps are now supported which makes debugging ts-node scripts much nicer (PR)
  • Pause Data We fixed three issues that occurred when fetching data before it was ready (1, 2, 3)

Replays in the Wild

Last week Brian filed a React issue for a potential suspense cache bug (Tweet, Loom, Replay).

Seeing Mateusz reed the tweet, dive into React’s guts (while we were asleep), and find the bug, reminded us of how magical the early GitHub days felt.

--

--