Changeset 9039
- Timestamp:
- 03/16/08 20:00:07 (7 months ago)
- Files:
-
- spinoffs/prototype/trunk/CHANGELOG (modified) (1 diff)
- spinoffs/prototype/trunk/test/lib/unittest.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
spinoffs/prototype/trunk/CHANGELOG
r9037 r9039 1 * Instanciate Test.Unit.Logger on window load. [Tobie Langel] 2 3 * Unit tests clean-up. [Tobie Langel] 4 1 5 * Refactor String#escapeHTML to avoid using the `with` statement. [Tobie Langel] 2 6 spinoffs/prototype/trunk/test/lib/unittest.js
r8644 r9039 156 156 157 157 options.resultsURL = this.queryParams.resultsURL; 158 options.testLog = $(options.testLog);159 158 160 159 this.tests = this.getTests(testcases); 161 160 this.currentTest = 0; 162 this.logger = new Test.Unit.Logger(options.testLog); 161 163 162 Event.observe(window, "load", function() { 163 this.logger = new Test.Unit.Logger($(options.testLog)); 164 164 this.runTests.bind(this).delay(0.1); 165 165 }.bind(this));