Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
coopwire-hypothesis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
孙灵跃 Leon Sun
coopwire-hypothesis
Commits
ddb7fc4a
Commit
ddb7fc4a
authored
Jun 11, 2015
by
Randall Leeds
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add deleteAnnotation tests
parent
a4744faa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
0 deletions
+43
-0
guest-test.coffee
h/static/scripts/annotator/test/guest-test.coffee
+43
-0
No files found.
h/static/scripts/annotator/test/guest-test.coffee
View file @
ddb7fc4a
raf
=
require
(
'raf'
)
Promise
=
global
.
Promise
?
require
(
'es6-promise'
).
Promise
Promise
=
global
.
Promise
?
require
(
'es6-promise'
).
Promise
Annotator
=
require
(
'annotator'
)
Annotator
=
require
(
'annotator'
)
Guest
=
require
(
'../guest'
)
Guest
=
require
(
'../guest'
)
...
@@ -412,3 +413,45 @@ describe 'Guest', ->
...
@@ -412,3 +413,45 @@ describe 'Guest', ->
assert
.
equal
(
guest
.
anchors
.
length
,
1
)
assert
.
equal
(
guest
.
anchors
.
length
,
1
)
assert
.
calledOnce
(
stub
)
assert
.
calledOnce
(
stub
)
done
()
done
()
describe
'deleteAnnotation()'
,
->
it
'removes the anchors from the "anchors" instance variable'
,
(
done
)
->
guest
=
createGuest
()
annotation
=
{}
guest
.
anchors
.
push
({
annotation
})
guest
.
deleteAnnotation
(
annotation
)
new
Promise
(
raf
).
then
->
assert
.
equal
(
guest
.
anchors
.
length
,
0
)
done
()
it
'updates the bucket bar plugin'
,
(
done
)
->
guest
=
createGuest
()
guest
.
plugins
.
BucketBar
=
update
:
sinon
.
stub
()
annotation
=
{}
guest
.
anchors
.
push
({
annotation
})
guest
.
deleteAnnotation
(
annotation
)
new
Promise
(
raf
).
then
->
assert
.
calledOnce
(
guest
.
plugins
.
BucketBar
.
update
)
done
()
it
'publishes the "annotationDeleted" event'
,
(
done
)
->
guest
=
createGuest
()
annotation
=
{}
publish
=
sandbox
.
stub
(
guest
,
'publish'
)
guest
.
deleteAnnotation
(
annotation
)
new
Promise
(
raf
).
then
->
assert
.
calledOnce
(
publish
)
assert
.
calledWith
(
publish
,
'annotationDeleted'
,
[
annotation
])
done
()
it
'removes any highlights associated with the annotation'
,
(
done
)
->
guest
=
createGuest
()
annotation
=
{}
highlights
=
[
document
.
createElement
(
'span'
)]
removeHighlights
=
sandbox
.
stub
(
highlighter
,
'removeHighlights'
)
guest
.
anchors
.
push
({
annotation
,
highlights
})
guest
.
deleteAnnotation
(
annotation
)
new
Promise
(
raf
).
then
->
assert
.
calledOnce
(
removeHighlights
)
assert
.
calledWith
(
removeHighlights
,
highlights
)
done
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment