mirror of
https://github.com/HackPlan/atom-shell.git
synced 2026-03-30 23:17:21 +08:00
19 lines
493 B
CoffeeScript
19 lines
493 B
CoffeeScript
describe 'message loop', ->
|
|
describe 'process.nextTick', ->
|
|
it 'should emit the callback', (done) ->
|
|
process.nextTick done
|
|
|
|
it 'should work in nested calls', (done) ->
|
|
process.nextTick ->
|
|
process.nextTick ->
|
|
process.nextTick done
|
|
|
|
describe 'setImmediate', ->
|
|
it 'should emit the callback', (done) ->
|
|
setImmediate done
|
|
|
|
it 'should work in nested calls', (done) ->
|
|
setImmediate ->
|
|
setImmediate ->
|
|
setImmediate done
|