diff options
author | 2023-01-31 17:55:16 -0800 | |
---|---|---|
committer | 2023-01-31 17:55:16 -0800 | |
commit | cc4326cd829decc95d1f1f23998f97705637e04b (patch) | |
tree | 9ccaa829b6d48af521d5e5fcdbabc0dac8d186af /test/bun.js/readline_promises.node.test.ts | |
parent | c57b37d29f9d04780c7f7917789cf8b424710d23 (diff) | |
download | bun-cc4326cd829decc95d1f1f23998f97705637e04b.tar.gz bun-cc4326cd829decc95d1f1f23998f97705637e04b.tar.zst bun-cc4326cd829decc95d1f1f23998f97705637e04b.zip |
Re-run prettier after changes
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()); |