Do not rely on external server in spec.
This commit is contained in:
parent
2b5a0e28e3
commit
ed744bf1d2
1 changed files with 9 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
|||
assert = require 'assert'
|
||||
http = require 'http'
|
||||
path = require 'path'
|
||||
|
||||
describe 'chromium feature', ->
|
||||
|
@ -9,9 +10,15 @@ describe 'chromium feature', ->
|
|||
process.atomBinding('v8_util').takeHeapSnapshot()
|
||||
|
||||
describe 'sending request of http protocol urls', ->
|
||||
it 'does not crash', ->
|
||||
it 'does not crash', (done) ->
|
||||
@timeout 5000
|
||||
$.get 'https://api.github.com/zen'
|
||||
server = http.createServer (req, res) ->
|
||||
res.end()
|
||||
server.close()
|
||||
done()
|
||||
server.listen 0, '127.0.0.1', ->
|
||||
{port} = server.address()
|
||||
$.get "http://127.0.0.1:#{port}"
|
||||
|
||||
describe 'navigator.webkitGetUserMedia', ->
|
||||
it 'calls its callbacks', (done) ->
|
||||
|
|
Loading…
Reference in a new issue