Fix tests
This commit is contained in:
parent
ee23903cc2
commit
87fdd95a6f
|
@ -3,7 +3,8 @@
|
||||||
"document",
|
"document",
|
||||||
"window",
|
"window",
|
||||||
"-Promise",
|
"-Promise",
|
||||||
"jQuery"
|
"jQuery",
|
||||||
|
"Visibility"
|
||||||
],
|
],
|
||||||
"browser": true,
|
"browser": true,
|
||||||
"boss": true,
|
"boss": true,
|
||||||
|
|
|
@ -174,7 +174,7 @@ var Controller = Ember.Controller.extend({
|
||||||
viewSearch(phrase) {
|
viewSearch(phrase) {
|
||||||
this.set('search', phrase);
|
this.set('search', phrase);
|
||||||
this.set('isLoaded', false);
|
this.set('isLoaded', false);
|
||||||
Repo.search(this.store, phrase).then( () => {
|
Repo.search(this.store, phrase).then( (reposRecordArray) => {
|
||||||
this.set('isLoaded', true);
|
this.set('isLoaded', true);
|
||||||
this.set('_repos', reposRecordArray);
|
this.set('_repos', reposRecordArray);
|
||||||
});
|
});
|
||||||
|
|
|
@ -5,7 +5,7 @@ var Serializer = V2FallbackSerializer.extend({
|
||||||
isNewSerializerAPI: true,
|
isNewSerializerAPI: true,
|
||||||
|
|
||||||
normalizeResponse(store, primaryModelClass, payload, id, requestType) {
|
normalizeResponse(store, primaryModelClass, payload, id, requestType) {
|
||||||
if(!id && requestType == 'findRecord') {
|
if(!id && requestType === 'findRecord') {
|
||||||
id = payload.id;
|
id = payload.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -61,7 +61,7 @@ export default V3Serializer.extend({
|
||||||
Object.keys(data.relationships).forEach(function (key) {
|
Object.keys(data.relationships).forEach(function (key) {
|
||||||
let relationship = data.relationships[key];
|
let relationship = data.relationships[key];
|
||||||
let process = function(data) {
|
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
|
// no need to add records if they have only id and type
|
||||||
let type = key === 'defaultBranch' ? 'branch' : key.singularize();
|
let type = key === 'defaultBranch' ? 'branch' : key.singularize();
|
||||||
let serializer = store.serializerFor(type);
|
let serializer = store.serializerFor(type);
|
||||||
|
|
|
@ -45,7 +45,8 @@
|
||||||
"currentURL",
|
"currentURL",
|
||||||
"currentPath",
|
"currentPath",
|
||||||
"currentRouteName",
|
"currentRouteName",
|
||||||
"jQuery"
|
"jQuery",
|
||||||
|
"Visibility"
|
||||||
],
|
],
|
||||||
"node": false,
|
"node": false,
|
||||||
"browser": false,
|
"browser": false,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user