diff --git a/spec/web/http.coffee b/spec/web/http.coffee new file mode 100644 index 000000000000..896f3cf3b8b9 --- /dev/null +++ b/spec/web/http.coffee @@ -0,0 +1,7 @@ +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()