mirror of
https://github.com/electron/electron.git
synced 2026-01-25 23:38:18 -05:00
8 lines
209 B
CoffeeScript
8 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()
|