Skip to content

Commit

Permalink
Added support for manual tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
spocke committed Jan 24, 2011
1 parent ea2e91f commit c5c7c79
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions tests/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@
[
{title: 'Basic tests', tests: [
{title: 'Core API', url: 'api.html'}
]},

{title: 'Manual tests', manual: true, tests: [
{title: 'Multipart setting', url: 'multipart.html'},
{title: 'Errors from server', url: 'error.html'},
{title: 'Overlay shim', url: 'shim.html'}
]}
]
]
Expand Down
3 changes: 2 additions & 1 deletion tests/qunit/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@

html += '</ol>';

this.tests = this.tests.concat(tests);
if (!suites[i].manual)
this.tests = this.tests.concat(tests);
}
html += '</div>';
}
Expand Down

0 comments on commit c5c7c79

Please sign in to comment.