rebuilt
This commit is contained in:
@@ -1,49 +0,0 @@
|
||||
window.url = "http://api.wordnik.com/v4/resources.json"
|
||||
|
||||
describe 'SwaggerUi', ->
|
||||
|
||||
describe 'constructor', ->
|
||||
|
||||
beforeEach ->
|
||||
window.ui = new SwaggerUi
|
||||
api_key: window.api_key
|
||||
url: window.url
|
||||
waitsFor ->
|
||||
ui.ready
|
||||
|
||||
it "sets a `ready` property when the API is ready", ->
|
||||
runs ->
|
||||
expect(ui.ready).toBe(true)
|
||||
|
||||
it "has access to the precompiled Handlebars template", ->
|
||||
runs ->
|
||||
expect(Handlebars.templates['template.html']).toBeDefined()
|
||||
|
||||
describe 'DOM container', ->
|
||||
|
||||
afterEach ->
|
||||
$("#swagger_ui").remove()
|
||||
|
||||
it "renders to default DOM container if it exists", ->
|
||||
window.ui = new SwaggerUi
|
||||
waitsFor ->
|
||||
ui.ready
|
||||
runs ->
|
||||
expect($("#swagger_ui").length).toBe(1)
|
||||
|
||||
it "creates default DOM container if it doesn't exist", ->
|
||||
expect($("#swagger_ui").length).toBe(0)
|
||||
window.ui = new SwaggerUi
|
||||
waitsFor ->
|
||||
ui.ready
|
||||
runs ->
|
||||
expect($("#swagger_ui").length).toBe(1)
|
||||
|
||||
it "allows an alternate DOM container to be specified when initialized", ->
|
||||
expect($("#swagger_ui").length).toBe(0)
|
||||
window.ui = new SwaggerUi
|
||||
dom_id: 'zhwagger'
|
||||
waitsFor ->
|
||||
ui.ready
|
||||
runs ->
|
||||
expect($("#zhwagger").length).toBe(1)
|
||||
Reference in New Issue
Block a user