mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 15:48:11 -05:00
Made some minor changes.
This commit is contained in:
parent
e3088ad813
commit
f9e8bfad9f
3 changed files with 4 additions and 3 deletions
|
@ -25,7 +25,7 @@ DEMO_URL_PREFIX = '/demo/'
|
|||
###
|
||||
|
||||
module.exports = DemoView = class DemoView extends RootView
|
||||
id: "demo-view"
|
||||
id: 'demo-view'
|
||||
template: template
|
||||
|
||||
# INITIALIZE
|
||||
|
|
|
@ -18,7 +18,6 @@ module.exports = class RelatedAchievementsView extends CocoView
|
|||
@level = options.level
|
||||
@relatedID = @level.id
|
||||
@achievements = new RelatedAchievementsCollection @relatedID
|
||||
console.debug @achievements
|
||||
@supermodel.loadCollection @achievements, 'achievements'
|
||||
|
||||
onLoaded: ->
|
||||
|
|
|
@ -92,9 +92,11 @@ describe 'CocoModel', ->
|
|||
request = jasmine.Ajax.requests.mostRecent()
|
||||
expect(request).toBeUndefined()
|
||||
|
||||
describe 'Achievement polling', ->
|
||||
xdescribe 'Achievement polling', ->
|
||||
NewAchievementCollection = require 'collections/NewAchievementCollection'
|
||||
EarnedAchievement = require 'models/EarnedAchievement'
|
||||
|
||||
# TODO: Figure out how to do debounce in tests so that this test doesn't need to use keepDoingUntil
|
||||
|
||||
it 'achievements are polled upon saving a model', (done) ->
|
||||
#spyOn(CocoModel, 'pollAchievements')
|
||||
|
|
Loading…
Reference in a new issue