Fix imports in run-tests example (#7368)

Adds `describe` to the import statement in a run tests example. Without this, the example does not run properly and returns an error.
This commit is contained in:
Brian Knight
2023-11-29 21:00:15 -05:00
committed by GitHub
parent ebae02a08b
commit 851b19ee0e

View File

@@ -64,7 +64,7 @@ Ran 2 tests across 1 files. [15.00ms]
All tests have a name, defined using the first parameter to the `test` function. Tests can also be grouped into suites with `describe`.
```ts
import { test, expect } from "bun:test";
import { test, expect, describe } from "bun:test";
describe("math", () => {
test("add", () => {