Changeset 8574
- Timestamp:
- 01/06/08 07:38:02 (9 months ago)
- Files:
-
- spinoffs/prototype/trunk/test/lib/unittest.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
spinoffs/prototype/trunk/test/lib/unittest.js
r8573 r8574 158 158 options.testLog = $(options.testLog); 159 159 160 this.tests = this.getTests(testcases , options);160 this.tests = this.getTests(testcases); 161 161 this.currentTest = 0; 162 162 this.logger = new Test.Unit.Logger(options.testLog); … … 168 168 queryParams: window.location.search.parseQuery(), 169 169 170 getTests: function(testcases , options) {171 var tests ;170 getTests: function(testcases) { 171 var tests, options = this.options; 172 172 if (this.queryParams.tests) tests = this.queryParams.tests.split(','); 173 173 else if (options.tests) tests = options.tests;