Files
hoppscotch/packages/hoppscotch-common/src/helpers/utils/__tests__/b64.spec.js
2023-06-22 00:36:25 +05:30

13 lines
398 B
JavaScript

import { describe, expect, test } from "vitest"
import { decodeB64StringToArrayBuffer } from "../b64"
describe("decodeB64StringToArrayBuffer", () => {
test("decodes content correctly", () => {
expect(
decodeB64StringToArrayBuffer("aG9wcHNjb3RjaCBpcyBhd2Vzb21lIQ==")
).toEqual(Buffer.from("hoppscotch is awesome!", "utf-8").buffer)
})
// TODO : More tests for binary data ?
})