Fix tests

This commit is contained in:
Piotr Sarnacki 2015-12-02 15:03:10 +01:00
parent ee23903cc2
commit 87fdd95a6f
5 changed files with 7 additions and 5 deletions

View File

@ -3,7 +3,8 @@
"document",
"window",
"-Promise",
"jQuery"
"jQuery",
"Visibility"
],
"browser": true,
"boss": true,

View File

@ -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);
});

View File

@ -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;
}

View File

@ -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);

View File

@ -45,7 +45,8 @@
"currentURL",
"currentPath",
"currentRouteName",
"jQuery"
"jQuery",
"Visibility"
],
"node": false,
"browser": false,