From d4bf85399ef9c8ec2340a2d2da14ac79793bb93e Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Jan 2025 10:10:58 +0000 Subject: [PATCH] feat(roll): roll to ToT Playwright (22-01-25) --- nodejs/docs/test-fixtures.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodejs/docs/test-fixtures.mdx b/nodejs/docs/test-fixtures.mdx index 0c5048b41a1..5375c972b37 100644 --- a/nodejs/docs/test-fixtures.mdx +++ b/nodejs/docs/test-fixtures.mdx @@ -420,7 +420,7 @@ Automatic fixtures are set up for each test/worker, even when the test does not Here is an example fixture that automatically attaches debug logs when the test fails, so we can later review the logs in the reporter. Note how it uses [TestInfo] object that is available in each test/fixture to retrieve metadata about the test being run. ```js title="my-test.ts" -import * as debug from 'debug'; +import debug from 'debug'; import * as fs from 'fs'; import { test as base } from '@playwright/test';