summaryrefslogtreecommitdiff
path: root/school/node_modules/node-forge/nodejs/ui/test.js
diff options
context:
space:
mode:
Diffstat (limited to 'school/node_modules/node-forge/nodejs/ui/test.js')
-rw-r--r--school/node_modules/node-forge/nodejs/ui/test.js36
1 files changed, 0 insertions, 36 deletions
diff --git a/school/node_modules/node-forge/nodejs/ui/test.js b/school/node_modules/node-forge/nodejs/ui/test.js
deleted file mode 100644
index fa51fe2..0000000
--- a/school/node_modules/node-forge/nodejs/ui/test.js
+++ /dev/null
@@ -1,36 +0,0 @@
-var ASSERT = chai.assert;
-mocha.setup({
- ui: 'bdd',
- timeout: 30000
-});
-requirejs.config({
- paths: {
- forge: 'forge',
- test: 'test'
- }
-});
-requirejs([
- 'test/util',
- 'test/md5',
- 'test/sha1',
- 'test/sha256',
- 'test/hmac',
- 'test/pbkdf2',
- 'test/mgf1',
- 'test/random',
- 'test/asn1',
- 'test/pem',
- 'test/rsa',
- 'test/kem',
- 'test/pkcs1',
- 'test/x509',
- 'test/csr',
- 'test/aes',
- 'test/rc2',
- 'test/des',
- 'test/pkcs7',
- 'test/pkcs12',
- 'test/tls'
-], function() {
- mocha.run();
-});