mirror of
https://github.com/kou029w/websri.git
synced 2025-01-18 16:08:16 +00:00
14 lines
413 B
TypeScript
14 lines
413 B
TypeScript
import assert from "node:assert/strict";
|
|
import { test } from "node:test";
|
|
import { IntegrityMetadata } from "../../src/index.ts";
|
|
|
|
test("toJSON() can be used", function () {
|
|
const integrityMetadata = new IntegrityMetadata(
|
|
"sha256-MV9b23bQeMQ7isAGTkoBZGErH853yGk0W/yUx1iU7dM=",
|
|
);
|
|
|
|
assert.strictEqual(
|
|
integrityMetadata.toJSON(),
|
|
"sha256-MV9b23bQeMQ7isAGTkoBZGErH853yGk0W/yUx1iU7dM=",
|
|
);
|
|
});
|