Skip to content

Commit

Permalink
Execute Mocha tests (#1054)
Browse files Browse the repository at this point in the history
  • Loading branch information
kibertoad committed Jan 5, 2020
1 parent ceb235c commit 8f739b0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -250,6 +250,7 @@ Make sure that the user running the process has the appropriate privileges to re

#### License: MIT
#### Author: [Charlie Robbins](https://github.com/indexzero)
#### Maintainer: [Igor Savin](https://github.com/kibertoad)
#### 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)

[0]: https://github.com/foreverjs/forever-monitor
Expand Down
4 changes: 3 additions & 1 deletion package.json
Expand Up @@ -54,8 +54,10 @@
"main": "./lib/forever",
"scripts": {
"lint": "eslint \"lib/**/*.js\" \"test/**/*.js\"",
"test": "npm run test:vows && npm run test:mocha",
"test:mocha": "mocha test/mocha/**/*.spec.js",
"test:vows": "vows test/**/*-test.js --dot-matrix -i",
"test:ci": "npm run lint && npm run test:vows",
"test:ci": "npm run lint && npm test",
"prettier": "prettier --write \"{lib,examples,test}/**/*.js\""
},
"engines": {
Expand Down
@@ -1,5 +1,5 @@
var fs = require('fs');
var configUtils = require('../../lib/util/config-utils');
var configUtils = require('../../../lib/util/config-utils');
var expect = require('chai').expect;

describe('config-utils', () => {
Expand Down

0 comments on commit 8f739b0

Please sign in to comment.