Skip to content

Commit

Permalink
Hopefully fixed build issues for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
NickGlenn committed Aug 1, 2016
1 parent 254d4ba commit d4bc079
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"watch": "npm run build -- --watch",
"test": "mocha",
"tdd": "npm run test -- --watch",
"prepublish": "npm run clean && npm run test && npm run build"
"prepublish": "npm run clean && npm run build && npm run test"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion test/createSession.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const chai = require('chai');
const { expect } = chai;
const { createSession } = require('../dist/index');
const { createSession } = require('../');
const { mockAdapter, mockStore } = require('./utils');
const { spy, stub } = require('sinon');

Expand Down
2 changes: 1 addition & 1 deletion test/localStorage.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
global.window = {};

const { expect } = require('chai');
const { adapters } = require('../dist/index');
const { adapters } = require('../');
const { mockLocalStorage } = require('./utils');
const adapter = adapters.localStorage;

Expand Down

0 comments on commit d4bc079

Please sign in to comment.