mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Extract cmEditor tests to RT module
This commit is contained in:
parent
96b1d8c812
commit
4ad0416f24
1 changed files with 0 additions and 58 deletions
|
@ -1,58 +0,0 @@
|
||||||
define ['ide/editor/directives/cmEditor'], () ->
|
|
||||||
describe 'cmEditor', () ->
|
|
||||||
beforeEach(module('SharelatexApp'))
|
|
||||||
|
|
||||||
beforeEach () ->
|
|
||||||
@richTextInit = sinon.stub()
|
|
||||||
@richTextOpenDoc = sinon.stub()
|
|
||||||
window.Frontend = {
|
|
||||||
'rich-text': {
|
|
||||||
init: @richTextInit,
|
|
||||||
openDoc: @richTextOpenDoc
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
afterEach () -> window.Frontend = null
|
|
||||||
|
|
||||||
it 'inits Rich Text', () ->
|
|
||||||
inject ($compile, $rootScope) =>
|
|
||||||
$compile('<div cm-editor></div>')($rootScope)
|
|
||||||
expect(@richTextInit).to.have.been.called
|
|
||||||
|
|
||||||
it 'attaches to CM', () ->
|
|
||||||
inject ($compile, $rootScope, $browser) =>
|
|
||||||
getSnapshot = sinon.stub()
|
|
||||||
detachFromCM = sinon.stub()
|
|
||||||
attachToCM = sinon.stub()
|
|
||||||
$rootScope.sharejsDoc = {
|
|
||||||
getSnapshot: getSnapshot
|
|
||||||
detachFromCM: detachFromCM
|
|
||||||
attachToCM: attachToCM
|
|
||||||
}
|
|
||||||
|
|
||||||
$compile('<div cm-editor sharejs-doc="sharejsDoc"></div>')($rootScope)
|
|
||||||
$rootScope.$digest()
|
|
||||||
# Trigger $applyAsync to evaluate the expression, normally done in the
|
|
||||||
# next tick
|
|
||||||
$browser.defer.flush()
|
|
||||||
|
|
||||||
expect(detachFromCM).to.have.been.called
|
|
||||||
expect(getSnapshot).to.have.been.called
|
|
||||||
expect(@richTextOpenDoc).to.have.been.called
|
|
||||||
expect(attachToCM).to.have.been.called
|
|
||||||
|
|
||||||
it 'detaches from CM when destroyed', () ->
|
|
||||||
inject ($compile, $rootScope) =>
|
|
||||||
@richTextInit.returns({ setValue: sinon.stub() })
|
|
||||||
detachFromCM = sinon.stub()
|
|
||||||
$rootScope.sharejsDoc = {
|
|
||||||
getSnapshot: sinon.stub()
|
|
||||||
detachFromCM: detachFromCM
|
|
||||||
attachToCM: sinon.stub()
|
|
||||||
}
|
|
||||||
|
|
||||||
$compile('<div cm-editor sharejs-doc="sharejsDoc"></div>')($rootScope)
|
|
||||||
$rootScope.$digest()
|
|
||||||
$rootScope.$broadcast('destroy')
|
|
||||||
|
|
||||||
expect(detachFromCM).to.have.been.called
|
|
Loading…
Reference in a new issue