websri/test/integrity-metadata/stringify.ts
Kohei Watanabe c026b150f2
Some checks are pending
test / Node.js v20 (push) Waiting to run
test / Node.js v22 (push) Waiting to run
test / Deno (push) Waiting to run
test / Bun (push) Waiting to run
replace tsup with pkgroll and tsx for bundling
2024-10-02 19:07:50 +09:00

15 lines
464 B
TypeScript

import assert from "node:assert/strict";
import { test } from "node:test";
import { IntegrityMetadata } from "../../src/index.ts";
test("IntegrityMetadata like object can be serialized", function () {
const integrityMetadataLike = {
alg: "sha256",
val: "MV9b23bQeMQ7isAGTkoBZGErH853yGk0W/yUx1iU7dM=",
};
assert.strictEqual(
IntegrityMetadata.stringify(integrityMetadataLike),
"sha256-MV9b23bQeMQ7isAGTkoBZGErH853yGk0W/yUx1iU7dM=",
);
});