diff --git a/docs/guide/browser/trace-view.md b/docs/guide/browser/trace-view.md index e54a7a42788b..49346c7016bf 100644 --- a/docs/guide/browser/trace-view.md +++ b/docs/guide/browser/trace-view.md @@ -123,6 +123,4 @@ When you open a trace, you'll notice that Vitest groups browser interactions and Under the hood, Playwright still records its own low-level action events as usual. Vitest wraps them with source-location groups so you can jump straight from the trace timeline to the relevant line in your test. -Keep in mind that plain assertions like `expect(value).toBe(...)` run in Node, not the browser, so they won't show up in the trace. - For anything not covered automatically, you can use `page.mark()` or `locator.mark()` to add your own trace groups — see [Trace markers](#trace-markers) above.