mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-03-14 07:00:01 -04:00
Removed references to validator, fixed paths
This commit is contained in:
parent
08805b6470
commit
37ce387f5c
3 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
xdescribe 'GoalManager', ->
|
||||
GoalManager = require('lib/goal_manager')
|
||||
GoalManager = require('lib/world/GoalManager')
|
||||
|
||||
liveState =
|
||||
stateMap:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
describe('World', ->
|
||||
GoalManager = require 'lib/world/GoalManager'
|
||||
validator = require 'validators/goal'
|
||||
#validator = require 'validators/goal'
|
||||
|
||||
killGoal = { name: 'Kill Guy', killGuy: ['Guy1', 'Guy2'], id:'killguy'}
|
||||
saveGoal = { name: 'Save Guy', saveGuy: ['Guy1', 'Guy2'], id:'saveguy'}
|
||||
|
@ -11,7 +11,7 @@ describe('World', ->
|
|||
getItemGoal = { name: 'Mine', getItem: {who:'Grabby', itemID:'Sandwich'}, id:'id'}
|
||||
keepItemGoal = { name: 'Not Yours', keepFromGettingItem: {who:'Grabby', itemID:'Sandwich'}, id:'id'}
|
||||
|
||||
it 'uses valid goals', ->
|
||||
xit 'uses valid goals', ->
|
||||
goals = [
|
||||
killGoal, saveGoal,
|
||||
getToLocGoal, keepFromLocGoal,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
describe 'editor/level', ->
|
||||
EditorLevelView = require 'views/editor/level_view'
|
||||
EditorLevelView = require 'views/editor/level/home'
|
||||
|
||||
it 'does stuff', ->
|
||||
|
|
Loading…
Reference in a new issue