Skip to content

Commit

Permalink
Modified the ordering of the require statements.
Browse files Browse the repository at this point in the history
- NPM packages before local files.
  • Loading branch information
lewie9021 committed Nov 24, 2015
1 parent 1cba06c commit b7e66c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/init.spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var Config = require("../");
var expect = require("chai").expect;
var Config = require("../");

describe("instantiation", function() {

Expand Down
2 changes: 1 addition & 1 deletion test/loader.spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var Config = require("../");
var expect = require("chai").expect;
var Config = require("../");

describe("loader", function() {

Expand Down

0 comments on commit b7e66c0

Please sign in to comment.