mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
12 lines
304 B
CoffeeScript
12 lines
304 B
CoffeeScript
require '../common'
|
|
|
|
describe 'Level Thang Component', ->
|
|
|
|
url = getURL('/db/thang.component')
|
|
|
|
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()
|