Pass test suite.

* Add `travis.source_endpoint` meta (fixes many tests with hard
  expectations on `http://github.com` being in URL paths).
* Wrap `Ember.run.once` in a `Ember.run` (prevents test auto-run
  assertion).
* Fix expect counts for a couple tests.
This commit is contained in:
Robert Jackson 2014-11-04 21:22:58 -05:00
parent bc3a6e41df
commit 9011f9d85d
No known key found for this signature in database
GPG Key ID: B3D10EF8171F7219
3 changed files with 7 additions and 5 deletions

View File

@ -76,6 +76,7 @@ Travis.LogChunks = Em.ArrayProxy.extend
if part.final
@notifyPropertyChange('final')
Ember.run.once this, ->
@tryFinalizing()
@resetTimeout()
Ember.run this, ->
Ember.run.once this, ->
@tryFinalizing()
@resetTimeout()

View File

@ -40,7 +40,7 @@ test "it triggers downloading missing parts if there is a missing part, even tho
, 40
test "it triggers downloading next parts if there is no final part", ->
expect(2)
expect(4)
stop()
callback = (missingNumbers, after) ->
@ -58,7 +58,7 @@ test "it triggers downloading next parts if there is no final part", ->
, 35
test "it triggers downloading all available parts if there is no parts yet", ->
expect(1)
expect(2)
stop()
callback = (missingNumbers, after) ->

View File

@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8">
<meta rel="travis.api_endpoint" href="">
<meta rel="travis.source_endpoint" href="https://github.com">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Travis CI - Free Hosted Continuous Integration Platform for the Open Source Community</title>
<link rel="icon" type="image/png" href="/favicon.ico">