aboutsummaryrefslogtreecommitdiff
path: root/test/js
diff options
context:
space:
mode:
authorGravatar Alex Lam S.L <alexlamsl@gmail.com> 2023-07-23 06:05:24 +0300
committerGravatar GitHub <noreply@github.com> 2023-07-22 20:05:24 -0700
commit07e08b086ae7bb78feffe6b0d325dcecb1765ad9 (patch)
tree8138cb324b35d8b1dceb462e313abea524502012 /test/js
parent53eb126898cf88f579cabc2baf8dafa06f031094 (diff)
downloadbun-07e08b086ae7bb78feffe6b0d325dcecb1765ad9.tar.gz
bun-07e08b086ae7bb78feffe6b0d325dcecb1765ad9.tar.zst
bun-07e08b086ae7bb78feffe6b0d325dcecb1765ad9.zip
[install] improve workspace substitution of npm dependencies (#3754)
- respect semver ranges
Diffstat (limited to 'test/js')
-rw-r--r--test/js/node/readline/readline.node.test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/js/node/readline/readline.node.test.ts b/test/js/node/readline/readline.node.test.ts
index 0ad442eb4..a30afcc82 100644
--- a/test/js/node/readline/readline.node.test.ts
+++ b/test/js/node/readline/readline.node.test.ts
@@ -143,7 +143,7 @@ describe("readline.clearLine()", () => {
}, /ERR_INVALID_ARG_TYPE/);
});
- it("shouldn't throw on on null or undefined stream", done => {
+ it("should not throw on null or undefined stream", done => {
const { mustCall } = createCallCheckCtx(done);
// Verify that clearLine() does not throw on null or undefined stream.
assert.strictEqual(readline.clearLine(null, 0), true);