diff options
Diffstat (limited to 'test/bun.js/readline_promises.node.test.ts')
-rw-r--r-- | test/bun.js/readline_promises.node.test.ts | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/test/bun.js/readline_promises.node.test.ts b/test/bun.js/readline_promises.node.test.ts index eadd289e3..93093aecd 100644 --- a/test/bun.js/readline_promises.node.test.ts +++ b/test/bun.js/readline_promises.node.test.ts @@ -1,11 +1,7 @@ import { describe, it } from "bun:test"; import readlinePromises from "node:readline/promises"; import { EventEmitter } from "node:events"; -import { - createDoneDotAll, - createCallCheckCtx, - assert, -} from "./node-test-helpers"; +import { createDoneDotAll, createCallCheckCtx, assert } from "./node-test-helpers"; // ---------------------------------------------------------------------------- // Helpers @@ -29,7 +25,7 @@ class FakeInput extends EventEmitter { // ---------------------------------------------------------------------------- describe("readline/promises.createInterface()", () => { - it("should throw an error when failed completion", (done) => { + it("should throw an error when failed completion", done => { const createDone = createDoneDotAll(done); const { mustCall, mustNotCall } = createCallCheckCtx(createDone()); |