Skip to content

Commit

Permalink
Update bun-cryptohasher.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarred-Sumner committed Oct 19, 2024
1 parent f5bc711 commit 33af9cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/js/bun/util/bun-cryptohasher.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ describe("CryptoHasher", () => {
describe(algorithm, () => {
for (let encoding of ["hex", "base64", "buffer", undefined, "base64url"] as const) {
describe(encoding || "default", () => {
test.only("instance", () => {
test("instance", () => {
const hasher = new Bun.CryptoHasher(algorithm || undefined);
hasher.update("hello");
expect(hasher.digest(encoding)).toEqual(Bun.CryptoHasher.hash(algorithm, "hello", encoding));
Expand Down

0 comments on commit 33af9cd

Please sign in to comment.