From d80e95c1ebbbbe7e808e3141fee58e3178eec947 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 29 Oct 2015 20:52:16 -0700 Subject: [PATCH] cleaning some tests --- app/authenticators/jwt-resolved.js | 2 +- app/pods/users/lockoutauthenticate/route.js | 2 +- tests/test-helper.js | 2 +- tests/unit/models/measurement-test.js | 2 +- tests/unit/models/strain-test.js | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/authenticators/jwt-resolved.js b/app/authenticators/jwt-resolved.js index 4abf71b..568647d 100644 --- a/app/authenticators/jwt-resolved.js +++ b/app/authenticators/jwt-resolved.js @@ -23,7 +23,7 @@ export default BaseAuthenticator.extend({ return RSVP.resolve(data); }, - invalidate: function(data) { + invalidate: function(/* data */) { return RSVP.resolve(); }, }); diff --git a/app/pods/users/lockoutauthenticate/route.js b/app/pods/users/lockoutauthenticate/route.js index 992f534..8ace7ef 100644 --- a/app/pods/users/lockoutauthenticate/route.js +++ b/app/pods/users/lockoutauthenticate/route.js @@ -12,7 +12,7 @@ export default Ember.Route.extend(UnauthenticatedRouteMixin, { this.get('session').authenticate('authenticator:jwt-resolved', token).then(() => { this.get('currentUser.account').then((account) => { this.transitionTo('protected.users.changepassword', account.get('id')); - }) + }); }); }, diff --git a/tests/test-helper.js b/tests/test-helper.js index 0b009b7..718d0c4 100644 --- a/tests/test-helper.js +++ b/tests/test-helper.js @@ -1,5 +1,5 @@ import resolver from './helpers/resolver'; -import flashMessageHelper from './helpers/flash-message'; +// import flashMessageHelper from './helpers/flash-message'; import { setResolver diff --git a/tests/unit/models/measurement-test.js b/tests/unit/models/measurement-test.js index 0548082..7f4245c 100644 --- a/tests/unit/models/measurement-test.js +++ b/tests/unit/models/measurement-test.js @@ -5,7 +5,7 @@ import { moduleForModel('measurement', { // Specify the other units that are required for this test. - needs: ['model:strain'] + needs: ['model:strain', 'model:characteristic'] }); test('it exists', function(assert) { diff --git a/tests/unit/models/strain-test.js b/tests/unit/models/strain-test.js index 30b1e2c..be749c8 100644 --- a/tests/unit/models/strain-test.js +++ b/tests/unit/models/strain-test.js @@ -5,7 +5,7 @@ import { moduleForModel('strain', { // Specify the other units that are required for this test. - needs: ['model:measurement'] + needs: ['model:measurement', 'model:characteristic', 'model:species'] }); test('it exists', function(assert) {