diff options
author | 2023-10-12 23:12:27 -0700 | |
---|---|---|
committer | 2023-10-12 23:12:27 -0700 | |
commit | ba49d30a73058ba293f7d011955fe1a35b15dae0 (patch) | |
tree | 12ad8ae543f949fe5ca08ba91e8e7597163663c3 | |
parent | c9e1c6455fadd55a07eabcd9128541a1d349fff7 (diff) | |
download | bun-cli-flags.tar.gz bun-cli-flags.tar.zst bun-cli-flags.zip |
Fix bunx testcli-flags
-rw-r--r-- | test/cli/install/bunx.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cli/install/bunx.test.ts b/test/cli/install/bunx.test.ts index b8baceb1b..a52965ea9 100644 --- a/test/cli/install/bunx.test.ts +++ b/test/cli/install/bunx.test.ts @@ -83,7 +83,7 @@ it("should output usage if no arguments are passed", async () => { expect(stderr).toBeDefined(); const err = await new Response(stderr).text(); - expect(err).toContain("usage: "); + expect(err).toContain("Usage: "); expect(stdout).toBeDefined(); const out = await new Response(stdout).text(); expect(out).toHaveLength(0); |