16 lines
378 B
TypeScript
16 lines
378 B
TypeScript
import * as core from "@peculiar/webcrypto-core";
|
|
import * as assert from "assert";
|
|
|
|
context("CryptoKey", () => {
|
|
|
|
context("isKeyType", () => {
|
|
it("correct key type", () => {
|
|
assert.equal(core.BaseCryptoKey.isKeyType("secret"), true);
|
|
});
|
|
it("incorrect key type", () => {
|
|
assert.equal(core.BaseCryptoKey.isKeyType("Secret"), false);
|
|
});
|
|
});
|
|
|
|
});
|