Skip to content

Commit

Permalink
move unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ferclaverino committed Dec 9, 2016
1 parent 791af5e commit f928050
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion spec/support/jasmine.json → jasmine.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"spec_dir": "spec",
"spec_dir": "test/unit",
"spec_files": [
"**/*[sS]pec.js"
],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"start": "node manual/main.js",
"test": "npm run test:unit && npm run test:eslint",
"test:eslint": "eslint \"**/*.js\"",
"test:unit": "jasmine",
"test:unit": "jasmine JASMINE_CONFIG_PATH=./jasmine.json",
"test:unit:watch": "chokidar 'spec/*.js' -c 'npm run test:unit'"
},
"author": "",
Expand Down
2 changes: 1 addition & 1 deletion spec/invoker.spec.js → test/unit/invoker.spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const Invoker = require('../manual/invoker.js');
const Invoker = require('../../manual/invoker.js');

describe('invoker', ()=> {

Expand Down

0 comments on commit f928050

Please sign in to comment.