diff options
Diffstat (limited to 'cli/tests/node_compat/test/parallel/test-crypto-secret-keygen.js')
-rw-r--r-- | cli/tests/node_compat/test/parallel/test-crypto-secret-keygen.js | 9 |
1 files changed, 8 insertions, 1 deletions
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 +}); |