Sha256: a93315cabc38ae3b45ba31ea11b2a76654e45f5ab83b5c0dd4d1428cf2151b04

Contents?: true

Size: 489 Bytes

Versions: 7

Compression:

Stored size: 489 Bytes

Contents

var current_test = document.location.pathname.split('/')[document.location.pathname.split('/').length - 1];
var index = test_files.indexOf(current_test)

if(index > -1 && document.location.hash === '#run_all')
{
  setInterval(next_test_if_complete, 20)
}

function next_test_if_complete(){
  if($('li.pass').length > 0 && $('li.fail').length === 0 && $('p#qunit-testresult'))
  {
    if(test_files[index+1])
    {
      document.location.href = test_files[index+1] + '#run_all'
    }
  }
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
eyeballs-0.5.17 test/unit/run_all.js
eyeballs-0.5.16 test/unit/run_all.js
eyeballs-0.5.15 test/unit/run_all.js
eyeballs-0.5.14 test/unit/run_all.js
eyeballs-0.5.13.2 test/unit/run_all.js
eyeballs-0.5.13.1 test/unit/run_all.js
eyeballs-0.5.13 test/unit/run_all.js