mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
14 lines
514 B
CoffeeScript
14 lines
514 B
CoffeeScript
describe "Discourse.Onebox", ->
|
|
|
|
beforeEach ->
|
|
spyOn($, 'ajax').andCallThrough()
|
|
|
|
it "Stops rapid calls with cache true", ->
|
|
Discourse.Onebox.lookup('http://bla.com', true, (c) -> c)
|
|
Discourse.Onebox.lookup('http://bla.com', true, (c) -> c)
|
|
expect($.ajax.calls.length).toBe(1)
|
|
|
|
it "Stops rapid calls with cache false", ->
|
|
Discourse.Onebox.lookup('http://bla.com/a', false, (c) -> c)
|
|
Discourse.Onebox.lookup('http://bla.com/a', false, (c) -> c)
|
|
expect($.ajax.calls.length).toBe(1)
|