mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 04:13:37 +08:00
change the *correct* timeout value
This commit is contained in:
parent
2779fde565
commit
28a397398f
|
@ -62,4 +62,4 @@ install:
|
|||
- bash -c "if [ '$RAILS_MASTER' == '0' ]; then bundle install --without development --deployment --retry=3 --jobs=3; fi"
|
||||
|
||||
script:
|
||||
- bash -c "if [ '$QUNIT_RUN' == '0' ]; then bundle exec rspec && bundle exec rake plugin:spec; else LOAD_PLUGINS=1 bundle exec rake qunit:test['200000']; fi"
|
||||
- bash -c "if [ '$QUNIT_RUN' == '0' ]; then bundle exec rspec && bundle exec rake plugin:spec; else LOAD_PLUGINS=1 bundle exec rake qunit:test['300000']; fi"
|
||||
|
|
2
vendor/assets/javascripts/run-qunit.js
vendored
2
vendor/assets/javascripts/run-qunit.js
vendored
|
@ -36,7 +36,7 @@ page.open(args[0], function(status) {
|
|||
} else {
|
||||
page.evaluate(logQUnit);
|
||||
|
||||
var timeout = parseInt(args[1] || 360000, 10),
|
||||
var timeout = parseInt(args[1] || 300000, 10),
|
||||
start = Date.now();
|
||||
|
||||
var interval = setInterval(function() {
|
||||
|
|
Loading…
Reference in New Issue
Block a user