Skip to content

Commit

Permalink
make test work again
Browse files Browse the repository at this point in the history
  • Loading branch information
daaku committed Sep 7, 2021
1 parent a061c6f commit 1dbd350
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,3 +2,4 @@
/lib-cov/
/node_modules/
/npm-debug.log
/package-lock.json
8 changes: 5 additions & 3 deletions package.json
Expand Up @@ -3,15 +3,17 @@
"description": "JavaScript micro templates.",
"version": "1.0.4",
"license": "BSD-3-Clause",
"homepage": "https://github.com/nshah/nodejs-tmpl",
"homepage": "https://github.com/daaku/nodejs-tmpl",
"author": "Naitik Shah <n@daaku.org>",
"main": "lib/tmpl",
"repository": {
"type": "git",
"url": "https://github.com/daaku/nodejs-tmpl"
},
"scripts": { "test": "NODE_PATH=./lib mocha --ui exports" },
"scripts": {
"test": "NODE_PATH=./lib mocha --ui exports"
},
"devDependencies": {
"mocha": "0.12.x"
"mocha": "^9.1.1"
}
}
2 changes: 1 addition & 1 deletion test/tmpl-test.js
@@ -1,4 +1,4 @@
var tmpl = require('tmpl')
var tmpl = require('../lib/tmpl')
, assert = require('assert')

exports['basic name substitution'] = function() {
Expand Down

0 comments on commit 1dbd350

Please sign in to comment.