From 7513993c7ade504c0bd4f1c3e333bd45605ef6e9 Mon Sep 17 00:00:00 2001 From: Yury Michurin Date: Fri, 9 Jun 2023 07:35:04 +0300 Subject: [PATCH] docs: fix a comment typo (#23592) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Hi, Just a small meaningless comment typo 🙃 Have a great day! Signed-off-by: Yury Michurin --- packages/playwright-test/src/worker/fixtureRunner.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/playwright-test/src/worker/fixtureRunner.ts b/packages/playwright-test/src/worker/fixtureRunner.ts index 04f311eeb0..46456588cb 100644 --- a/packages/playwright-test/src/worker/fixtureRunner.ts +++ b/packages/playwright-test/src/worker/fixtureRunner.ts @@ -74,7 +74,7 @@ class Fixture { } } - // Break the regustration function into before/after steps. Create these before/after stacks + // Break the registration function into before/after steps. Create these before/after stacks // w/o scopes, and create single mutable step that will be converted into the after step. const shouldGenerateStep = !this.registration.hideStep && !this.registration.name.startsWith('_') && !this.registration.option; const isInternalFixture = this.registration.location && filterStackFile(this.registration.location.file);