From f366231bff574f893808ba964009581ec4599ebd Mon Sep 17 00:00:00 2001 From: Jake Boone Date: Fri, 24 Feb 2023 10:56:18 -0700 Subject: [PATCH] [docs] Minor syntax correction in test.md (#2153) --- docs/cli/test.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cli/test.md b/docs/cli/test.md index 4471a72044..5513285f97 100644 --- a/docs/cli/test.md +++ b/docs/cli/test.md @@ -112,7 +112,7 @@ afterEach(() => { // tests... ``` -Perform per-scope setup and teardown logic with `beforeAll` and `afterAll`. At the top-level, the `*scope* is the current file; in a `describe` block, the scope is the block itself. +Perform per-scope setup and teardown logic with `beforeAll` and `afterAll`. At the top-level, the *scope* is the current file; in a `describe` block, the scope is the block itself. ```ts import { expect, test, beforeAll, afterAll } from "bun:test";