Skip to content
This repository has been archived by the owner on Jun 18, 2019. It is now read-only.

Commit

Permalink
tests: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mdreizin committed Jun 16, 2016
1 parent be966e1 commit 472a9f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules/
dist/
coverage/
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"src/"
],
"scripts": {
"clean": "rm -rf ./dist",
"clean": "rm -rf ./dist && rm -rf ./coverage",
"eslint": "eslint ./ --cache",
"test": "babel-node ./jasmine.js",
"build": "babel ./src --out-dir ./dist --source-maps",
Expand Down
2 changes: 1 addition & 1 deletion test/index.spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
readFileSync
} from 'fs';
import loader from '../src'
import loader from '../src';

describe('enhanced-properties-loader', () => {
const makeRequest = (resourcePath, callback, options = {}, query = null) => {
Expand Down

0 comments on commit 472a9f9

Please sign in to comment.