mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 16:47:58 -05:00
20 lines
330 B
CoffeeScript
20 lines
330 B
CoffeeScript
|
require '../common'
|
||
|
|
||
|
describe 'LevelSession', ->
|
||
|
|
||
|
session = new LevelSession(
|
||
|
permissions: simplePermissions
|
||
|
)
|
||
|
|
||
|
it 'clears things first', (done) ->
|
||
|
clearModels [LevelSession], (err) ->
|
||
|
expect(err).toBeNull()
|
||
|
done()
|
||
|
|
||
|
it 'saves', (done) ->
|
||
|
session.save (err) ->
|
||
|
throw err if err
|
||
|
done()
|
||
|
|
||
|
|