Fix tests
This commit is contained in:
parent
ee23903cc2
commit
87fdd95a6f
|
@ -3,7 +3,8 @@
|
|||
"document",
|
||||
"window",
|
||||
"-Promise",
|
||||
"jQuery"
|
||||
"jQuery",
|
||||
"Visibility"
|
||||
],
|
||||
"browser": true,
|
||||
"boss": true,
|
||||
|
|
|
@ -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);
|
||||
});
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -45,7 +45,8 @@
|
|||
"currentURL",
|
||||
"currentPath",
|
||||
"currentRouteName",
|
||||
"jQuery"
|
||||
"jQuery",
|
||||
"Visibility"
|
||||
],
|
||||
"node": false,
|
||||
"browser": false,
|
||||
|
|
Loading…
Reference in New Issue
Block a user