summaryrefslogtreecommitdiff
path: root/cli/tests/unit/webcrypto_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/unit/webcrypto_test.ts')
-rw-r--r--cli/tests/unit/webcrypto_test.ts3
1 files changed, 0 insertions, 3 deletions
diff --git a/cli/tests/unit/webcrypto_test.ts b/cli/tests/unit/webcrypto_test.ts
index 1082cbb57..bdb99e8b7 100644
--- a/cli/tests/unit/webcrypto_test.ts
+++ b/cli/tests/unit/webcrypto_test.ts
@@ -26,7 +26,6 @@ Deno.test(async function testImportArrayBufferKey() {
await subtle.sign({ name: "HMAC" }, cryptoKey, new Uint8Array(8));
});
-// TODO(@littledivy): Remove this when we enable WPT for sign_verify
Deno.test(async function testSignVerify() {
const subtle = window.crypto.subtle;
assert(subtle);
@@ -99,7 +98,6 @@ const hashPlainTextVector = [
},
];
-// TODO(@littledivy): Remove this when we enable WPT for encrypt_decrypt
Deno.test(async function testEncryptDecrypt() {
const subtle = window.crypto.subtle;
assert(subtle);
@@ -717,7 +715,6 @@ Deno.test(async function testAesCtrEncryptDecrypt() {
}
});
-// TODO(@littledivy): Enable WPT when we have importKey support
Deno.test(async function testECDH() {
const namedCurve = "P-256";
const keyPair = await crypto.subtle.generateKey(