From 87fdd95a6f616b37ada81bbc8e2fd0992f8b8abd Mon Sep 17 00:00:00 2001 From: Piotr Sarnacki Date: Wed, 2 Dec 2015 15:03:10 +0100 Subject: [PATCH] Fix tests --- .jshintrc | 3 ++- app/controllers/repos.js | 2 +- app/serializers/repo.js | 2 +- app/serializers/v2_fallback.js | 2 +- tests/.jshintrc | 3 ++- 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.jshintrc b/.jshintrc index d7283329..98bf8385 100644 --- a/.jshintrc +++ b/.jshintrc @@ -3,7 +3,8 @@ "document", "window", "-Promise", - "jQuery" + "jQuery", + "Visibility" ], "browser": true, "boss": true, diff --git a/app/controllers/repos.js b/app/controllers/repos.js index 9d18d05b..a94ff617 100644 --- a/app/controllers/repos.js +++ b/app/controllers/repos.js @@ -174,7 +174,7 @@ var Controller = Ember.Controller.extend({ viewSearch(phrase) { this.set('search', phrase); this.set('isLoaded', false); - Repo.search(this.store, phrase).then( () => { + Repo.search(this.store, phrase).then( (reposRecordArray) => { this.set('isLoaded', true); this.set('_repos', reposRecordArray); }); diff --git a/app/serializers/repo.js b/app/serializers/repo.js index 8aed2822..98b08e20 100644 --- a/app/serializers/repo.js +++ b/app/serializers/repo.js @@ -5,7 +5,7 @@ var Serializer = V2FallbackSerializer.extend({ isNewSerializerAPI: true, normalizeResponse(store, primaryModelClass, payload, id, requestType) { - if(!id && requestType == 'findRecord') { + if(!id && requestType === 'findRecord') { id = payload.id; } diff --git a/app/serializers/v2_fallback.js b/app/serializers/v2_fallback.js index 570678be..7defd47b 100644 --- a/app/serializers/v2_fallback.js +++ b/app/serializers/v2_fallback.js @@ -61,7 +61,7 @@ export default V3Serializer.extend({ Object.keys(data.relationships).forEach(function (key) { let relationship = data.relationships[key]; let process = function(data) { - if(Object.keys(data).sort()+'' !== 'id,type' || (data['@href'] && data.type == 'branch')) { + if(Object.keys(data).sort()+'' !== 'id,type' || (data['@href'] && data.type === 'branch')) { // no need to add records if they have only id and type let type = key === 'defaultBranch' ? 'branch' : key.singularize(); let serializer = store.serializerFor(type); diff --git a/tests/.jshintrc b/tests/.jshintrc index 618a5861..c5379a55 100644 --- a/tests/.jshintrc +++ b/tests/.jshintrc @@ -45,7 +45,8 @@ "currentURL", "currentPath", "currentRouteName", - "jQuery" + "jQuery", + "Visibility" ], "node": false, "browser": false,