summaryrefslogtreecommitdiff
path: root/cli/tests/node_compat/test
diff options
context:
space:
mode:
authorYoshiya Hinosawa <stibium121@gmail.com>2023-04-18 00:36:49 +0900
committerGitHub <noreply@github.com>2023-04-18 00:36:49 +0900
commit559a61b879366c01fbbc078c03743cd836189ae7 (patch)
treea87d42f63c26eb7c91f2f4ef3edbec98aeb38c82 /cli/tests/node_compat/test
parentbcbdaac7e6399870b5b6fcdf765013c1682fe80c (diff)
chore: update node compat config (#18736)
Diffstat (limited to 'cli/tests/node_compat/test')
-rw-r--r--cli/tests/node_compat/test/fixtures/keys/agent1-cert.pem7
-rw-r--r--cli/tests/node_compat/test/fixtures/keys/agent1-key.pem7
-rw-r--r--cli/tests/node_compat/test/fixtures/keys/ca1-cert.pem2
-rw-r--r--cli/tests/node_compat/test/parallel/test-crypto-secret-keygen.js9
4 files changed, 9 insertions, 16 deletions
diff --git a/cli/tests/node_compat/test/fixtures/keys/agent1-cert.pem b/cli/tests/node_compat/test/fixtures/keys/agent1-cert.pem
index 938ec42b7..bef645b0f 100644
--- a/cli/tests/node_compat/test/fixtures/keys/agent1-cert.pem
+++ b/cli/tests/node_compat/test/fixtures/keys/agent1-cert.pem
@@ -1,10 +1,3 @@
-// deno-fmt-ignore-file
-// deno-lint-ignore-file
-
-// Copyright Joyent and Node contributors. All rights reserved. MIT license.
-// Taken from Node 18.12.1
-// This file is automatically generated by "node/_tools/setup.ts". Do not modify this file manually
-
-----BEGIN CERTIFICATE-----
MIID6DCCAtCgAwIBAgIUFH02wcL3Qgben6tfIibXitsApCYwDQYJKoZIhvcNAQEL
BQAwejELMAkGA1UEBhMCVVMxCzAJBgNVBAgMAkNBMQswCQYDVQQHDAJTRjEPMA0G
diff --git a/cli/tests/node_compat/test/fixtures/keys/agent1-key.pem b/cli/tests/node_compat/test/fixtures/keys/agent1-key.pem
index b182ac5ed..1bd840716 100644
--- a/cli/tests/node_compat/test/fixtures/keys/agent1-key.pem
+++ b/cli/tests/node_compat/test/fixtures/keys/agent1-key.pem
@@ -1,10 +1,3 @@
-// deno-fmt-ignore-file
-// deno-lint-ignore-file
-
-// Copyright Joyent and Node contributors. All rights reserved. MIT license.
-// Taken from Node 18.12.1
-// This file is automatically generated by "node/_tools/setup.ts". Do not modify this file manually
-
-----BEGIN RSA PRIVATE KEY-----
MIIEpAIBAAKCAQEA1FYyCvsg04Jwk9wsQoTtBN+6vVbh3a5Snii3kM1CVtsnM0nz
c1/9M3x6Y2Psylont/c9xwialsbYhtsMYjiPHN1qljr81ZnVgA5YehH5CJYPhO1Q
diff --git a/cli/tests/node_compat/test/fixtures/keys/ca1-cert.pem b/cli/tests/node_compat/test/fixtures/keys/ca1-cert.pem
index 4ba203b58..e1a012c6b 100644
--- a/cli/tests/node_compat/test/fixtures/keys/ca1-cert.pem
+++ b/cli/tests/node_compat/test/fixtures/keys/ca1-cert.pem
@@ -19,4 +19,4 @@ F7KvAZpYYKN9EMH1S/267By6H2I33BT/Ethv//n8dSfmuCurR1kYRaiOC4PVeyFk
B3sj8TtolrN0y/nToWUhmKiaVFnDx3odQ00yhmxR3t21iB7yDkko6D8Vf2dVC4j/
YYBVprXGlTP/hiYRLDoP20xKOYznx5cvHPJ9p+lVcOZUJsJj/Iy750+2n5UiBmXt
lz88C25ucKA=
------END CERTIFICATE----- \ No newline at end of file
+-----END CERTIFICATE-----
diff --git a/cli/tests/node_compat/test/parallel/test-crypto-secret-keygen.js b/cli/tests/node_compat/test/parallel/test-crypto-secret-keygen.js
index 098882215..a9db29806 100644
--- a/cli/tests/node_compat/test/parallel/test-crypto-secret-keygen.js
+++ b/cli/tests/node_compat/test/parallel/test-crypto-secret-keygen.js
@@ -1,3 +1,10 @@
+// deno-fmt-ignore-file
+// deno-lint-ignore-file
+
+// Copyright Joyent and Node contributors. All rights reserved. MIT license.
+// Taken from Node 18.12.1
+// This file is automatically generated by "node/_tools/setup.ts". Do not modify this file manually
+
'use strict';
const common = require('../common');
if (!common.hasCrypto)
@@ -134,4 +141,4 @@ assert.throws(
assert.throws(() => generateKeySync('unknown', { length: 123 }), {
code: 'ERR_INVALID_ARG_VALUE',
message: /The argument 'type' must be a supported key type/
-}); \ No newline at end of file
+});