This repository has been archived on 2023-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
webcrypto/packages/core/test/key.spec.ts

16 lines
370 B
TypeScript
Raw Normal View History

import * as core from "@peculiar/webcrypto-core";
import * as assert from "assert";
context("CryptoKey", () => {
context("isKeyType", () => {
it("correct key type", () => {
2022-05-23 21:09:47 +00:00
assert.equal(core.CryptoKey.isKeyType("secret"), true);
});
it("incorrect key type", () => {
2022-05-23 21:09:47 +00:00
assert.equal(core.CryptoKey.isKeyType("Secret"), false);
});
});
});