electron/spec/web/http.coffee
2013-09-29 20:57:57 +08:00

7 lines
209 B
CoffeeScript

describe 'http', ->
describe 'sending request of http protocol urls', ->
it 'should not crash', (done) ->
$.ajax
url: 'http://127.0.0.1'
success: -> done()
error: -> done()