Skip to content

Commit bbacb1e

Browse files
committed
Move test.js to test/index.js
1 parent bd471a0 commit bbacb1e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
"url": "https://github.com/crypto-browserify/cipher-base.git"
2222
},
2323
"scripts": {
24-
"coverage": "nyc node test.js",
24+
"coverage": "nyc node test/*.js",
2525
"lint": "standard",
2626
"test": "npm run lint && npm run unit",
27-
"unit": "node test.js"
27+
"unit": "node test/*.js"
2828
},
2929
"dependencies": {
3030
"inherits": "^2.0.1"

test.js renamed to test/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
var test = require('tape')
2-
var CipherBase = require('./')
2+
var CipherBase = require('../')
33
var inherits = require('inherits')
44

55
test('basic version', function (t) {

0 commit comments

Comments
 (0)