We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test
1 parent 14b9a42 commit 2c99d99Copy full SHA for 2c99d99
2 files changed
package.json
@@ -7,7 +7,7 @@
7
"scripts": {
8
"pretest": "standard",
9
"test": "npm run tests-only",
10
- "tests-only": "tape test.js",
+ "tests-only": "tape 'test/**/*.js'",
11
"posttest": "npx npm@'>=10.2' audit --production"
12
},
13
"repository": {
test.js test/index.jstest.js renamed to test/index.js
@@ -7,7 +7,7 @@ var vectors = require('hash-test-vectors')
vectors.forEach(function (vector) {
vector.ripemd160 = vector.rmd160
})
-var createHash = require('./browser')
+var createHash = require('../browser')
algorithms.forEach(function (algorithm) {
test('test ' + algorithm + ' against test vectors', function (t) {
0 commit comments