summaryrefslogtreecommitdiffstats
path: root/debian/tests/test_modules/https-pem/install.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-21 20:56:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-21 20:56:20 +0000
commit868522aa377a4519adb0b9f402586ab7a41b86ba (patch)
tree44e805e154a3ace9bd8dbac73843e80d296b7814 /debian/tests/test_modules/https-pem/install.js
parentAdding upstream version 5.28.2+dfsg1+~cs23.11.12.3. (diff)
downloadnode-undici-868522aa377a4519adb0b9f402586ab7a41b86ba.tar.xz
node-undici-868522aa377a4519adb0b9f402586ab7a41b86ba.zip
Adding debian version 5.28.2+dfsg1+~cs23.11.12.3-6.debian/5.28.2+dfsg1+_cs23.11.12.3-6debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/tests/test_modules/https-pem/install.js')
-rw-r--r--debian/tests/test_modules/https-pem/install.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/debian/tests/test_modules/https-pem/install.js b/debian/tests/test_modules/https-pem/install.js
new file mode 100644
index 0000000..d7cc884
--- /dev/null
+++ b/debian/tests/test_modules/https-pem/install.js
@@ -0,0 +1,10 @@
+'use strict'
+
+var fs = require('fs')
+var path = require('path')
+var selfsigned = require('selfsigned')
+
+var pems = selfsigned.generate()
+
+fs.writeFileSync(path.join(__dirname, 'key.pem'), pems.private)
+fs.writeFileSync(path.join(__dirname, 'cert.pem'), pems.cert)