mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
13 lines
295 B
CoffeeScript
13 lines
295 B
CoffeeScript
|
require '../common'
|
||
|
|
||
|
describe 'LevelFeedback', ->
|
||
|
|
||
|
url = getURL('/db/level.feedback')
|
||
|
|
||
|
it 'get schema', (done) ->
|
||
|
request.get {uri:url+'/schema'}, (err, res, body) ->
|
||
|
expect(res.statusCode).toBe(200)
|
||
|
body = JSON.parse(body)
|
||
|
expect(body.type).toBeDefined()
|
||
|
done()
|