Skip to content

Commit 8f739b0

Browse files
authored
Execute Mocha tests (#1054)
1 parent ceb235c commit 8f739b0

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,7 @@ Make sure that the user running the process has the appropriate privileges to re
250250

251251
#### License: MIT
252252
#### Author: [Charlie Robbins](https://github.com/indexzero)
253+
#### Maintainer: [Igor Savin](https://github.com/kibertoad)
253254
#### Contributors: [Fedor Indutny](https://github.com/indutny), [James Halliday](http://substack.net/), [Charlie McConnell](https://github.com/avianflu), [Maciej Malecki](https://github.com/mmalecki), [John Lancaster](http://jlank.com)
254255

255256
[0]: https://github.com/foreverjs/forever-monitor

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,10 @@
5454
"main": "./lib/forever",
5555
"scripts": {
5656
"lint": "eslint \"lib/**/*.js\" \"test/**/*.js\"",
57+
"test": "npm run test:vows && npm run test:mocha",
58+
"test:mocha": "mocha test/mocha/**/*.spec.js",
5759
"test:vows": "vows test/**/*-test.js --dot-matrix -i",
58-
"test:ci": "npm run lint && npm run test:vows",
60+
"test:ci": "npm run lint && npm test",
5961
"prettier": "prettier --write \"{lib,examples,test}/**/*.js\""
6062
},
6163
"engines": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
var fs = require('fs');
2-
var configUtils = require('../../lib/util/config-utils');
2+
var configUtils = require('../../../lib/util/config-utils');
33
var expect = require('chai').expect;
44

55
describe('config-utils', () => {

0 commit comments

Comments
 (0)