Skip to content

Commit

Permalink
Fix missing requires in specs
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamEdgett committed Apr 6, 2017
1 parent 3884af6 commit bde7b63
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions spec/action_emitter_spec.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
const Aviator = require('../index');

describe('ActionEmitter', function () {
beforeEach(function () {
subject = new Aviator._ActionEmitter;
Expand Down
2 changes: 2 additions & 0 deletions spec/aviator_spec.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
const Aviator = require('../index');

describe('Aviator', function () {

var subject, _navigator, usersResponder, routes;
Expand Down
2 changes: 2 additions & 0 deletions spec/navigator_spec.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
const Aviator = require('../index');

describe('Navigator', function () {

var subject, itemsTarget, usersTarget, routes;
Expand Down
2 changes: 2 additions & 0 deletions spec/request_spec.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
const Aviator = require('../index');

describe('Request', function () {

var subject, navigator;
Expand Down
2 changes: 2 additions & 0 deletions spec/route_spec.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
const Aviator = require('../index');

describe('Route', function () {

var routes, uri, subject, usersTarget, navigator, invokeAction;
Expand Down

0 comments on commit bde7b63

Please sign in to comment.