Skip to content

Commit

Permalink
use windows friendly paths (#15)
Browse files Browse the repository at this point in the history
* use windows friendly paths

* cruft removal;
  • Loading branch information
msimerson committed Jan 28, 2017
1 parent 5bbadcd commit 2650e5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"plugins": [
"haraka"
],
"installedESLint": true,
"extends": ["eslint:recommended", "plugin:haraka/recommended"],
"rules": {
"no-console": 0
Expand Down
4 changes: 2 additions & 2 deletions test/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ function clearRequireCache () {
// changes affect other tests. Icky. Work around by invalidating
// the require cache, so config and configfile re-initialize
delete require.cache[
path.resolve(__dirname, '../config') + '.js'
path.resolve(__dirname, '..','config') + '.js'
];
delete require.cache[
path.resolve(__dirname, '../configfile') + '.js'
path.resolve(__dirname, '..','configfile') + '.js'
];
}

Expand Down

0 comments on commit 2650e5b

Please sign in to comment.