electron/spec/web/http.coffee

8 lines
209 B
CoffeeScript
Raw Normal View History

2013-09-29 12:57:57 +00:00
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()