AltLUG Git
Git-repositories of Altai Linux User Group
Jörn Zaefferer [Wed, 7 Mar 2012 12:27:25 +0000 (13:27 +0100)]
Fix lint errors and some formatting issues. Use QUnit.pushFailure for noglobals and global error handler.
Jörn Zaefferer [Wed, 7 Mar 2012 12:26:51 +0000 (13:26 +0100)]
Fix a missing expect in logs test
Jörn Zaefferer [Wed, 7 Mar 2012 12:26:28 +0000 (13:26 +0100)]
Add grunt.js configuration and include some usage instructions in the readme
Jörn Zaefferer [Wed, 7 Mar 2012 11:21:26 +0000 (12:21 +0100)]
Update package.json
Jörn Zaefferer [Wed, 7 Mar 2012 11:06:05 +0000 (12:06 +0100)]
Partially revert
af27eae841c3e1c01c46de72d676f1047e1ee375 - can't move reset around, so also don't wrap in try-catch, as the result of that is effectively swallowed. Can't output the result as the outputting is already done.
Jörn Zaefferer [Wed, 7 Mar 2012 11:02:00 +0000 (12:02 +0100)]
Add QUnit.pushFailure to log error conditions like exceptions. Accepts stacktrace as second argument, allowing extraction with catched exceptions (useful even in Safari). Remove old fail() function that would just log to console, not useful anymore as regular test output is much more useful by now. Move up QUnit.reset() call to just make that another failed assertion. Used to not make a test fail. Fixes #210
Jörn Zaefferer [Wed, 7 Mar 2012 10:34:12 +0000 (11:34 +0100)]
Update equals and same deprecations to use QUnit.push to provide correct source lines. Fixes #211
Jörn Zaefferer [Tue, 6 Mar 2012 12:29:21 +0000 (13:29 +0100)]
Add a test file for narwhal integration. Has to use print instead of console.log. Fails when an assertion fails, something about setInterval...
Jörn Zaefferer [Mon, 5 Mar 2012 12:14:23 +0000 (13:14 +0100)]
Apply notrycatch option to setup and teardown as well. Fixes #203. Reorder noglobals check to allow teardown to remove globals that were introduced intentionally. Fixes #204
Jörn Zaefferer [Mon, 5 Mar 2012 12:06:06 +0000 (13:06 +0100)]
Extend exports object with QUnit properties at the end of the file to export everything.
That's different to the window export, where we want to make only a subset global.
Fixes #201
Jörn Zaefferer [Mon, 5 Mar 2012 11:57:09 +0000 (12:57 +0100)]
Output source line for ok() assertions. Fixes #202
Jörn Zaefferer [Mon, 5 Mar 2012 11:50:18 +0000 (12:50 +0100)]
Make test fail if no assertions run. Fixes #178
Gijs Kruitbosch [Fri, 2 Mar 2012 16:48:45 +0000 (17:48 +0100)]
Sort object output alphabetically in order to improve diffs of objects where properties were set in a different order. Fixes #206
Jörn Zaefferer [Wed, 29 Feb 2012 16:54:06 +0000 (17:54 +0100)]
Revert "Change fixture reset behavior", changing #194 and #195 to wontfix.
This reverts commit
b9010d4befa71b394bffa3294d8de5c047f9c541.
That change turned out to cause very sublte bugs in jQuery UI testsuites, where the browser form memory would cache values between testruns. Which doesn't happen with the previous reset implementation. Unfortunate, but not worth the trouble.
Jörn Zaefferer [Sun, 26 Feb 2012 13:06:48 +0000 (14:06 +0100)]
Bump post-release version
Jörn Zaefferer [Sun, 26 Feb 2012 13:05:30 +0000 (14:05 +0100)]
Release 1.3.0
Jörn Zaefferer [Thu, 23 Feb 2012 15:18:53 +0000 (16:18 +0100)]
Cleanup test markup
Jörn Zaefferer [Wed, 22 Feb 2012 12:32:17 +0000 (13:32 +0100)]
Fix the jQuery branch of fixture reset. Would break when no fixture exists.
Spocke [Thu, 16 Feb 2012 14:29:32 +0000 (15:29 +0100)]
Added initial version of a junitlogger addon.
Jörn Zaefferer [Mon, 20 Feb 2012 11:01:31 +0000 (12:01 +0100)]
Escape document.title before inserting into markup. Extends fix for #127
Jörn Zaefferer [Wed, 15 Feb 2012 16:49:41 +0000 (17:49 +0100)]
Catch assertions running outside of test() context, make sure source is provided even for ok(). Fixes #98
Jörn Zaefferer [Wed, 15 Feb 2012 16:39:47 +0000 (17:39 +0100)]
Improve global object access, based on comments for
1a9120651d5464773256d8a1f2cf2eabe38ea5b3
Jörn Zaefferer [Wed, 15 Feb 2012 16:31:50 +0000 (17:31 +0100)]
Clear all sessionStorage entries once all tests passed. Helps getting rid of items from renamed tests. Fixes #101
Jörn Zaefferer [Wed, 15 Feb 2012 16:19:56 +0000 (17:19 +0100)]
Set fixed dimensions for #qunit-fixture. Fixes #114
Jörn Zaefferer [Wed, 15 Feb 2012 16:16:45 +0000 (17:16 +0100)]
Extend nodejs test runner to check for stacktrace output, twice
Jörn Zaefferer [Wed, 15 Feb 2012 16:12:36 +0000 (17:12 +0100)]
Extend nodejs test runner to check for stacktrace output
Jörn Zaefferer [Wed, 15 Feb 2012 16:00:20 +0000 (17:00 +0100)]
Generate more base markup, but allow the user to exclude that completelty or choose their own. Fixes #127
Jörn Zaefferer [Wed, 15 Feb 2012 15:51:39 +0000 (16:51 +0100)]
Add a simple test file to check basic nodejs integration works
Jörn Zaefferer [Wed, 15 Feb 2012 15:33:28 +0000 (16:33 +0100)]
Check for global object to find setTimeout in node
Jörn Zaefferer [Wed, 15 Feb 2012 15:23:52 +0000 (16:23 +0100)]
Fix CommonJS export by assigning QUnit to module.exports.
Jörn Zaefferer [Wed, 15 Feb 2012 14:59:04 +0000 (15:59 +0100)]
Remove the testEnviromentArg to test(). Most obscure, never used anywhere. test() is still heavily overloaded with argument shifting, this makes it a little more sane. Fixes #172
Jörn Zaefferer [Wed, 15 Feb 2012 14:40:48 +0000 (15:40 +0100)]
Serialize expected and actual values only when test fails. Speeds up output of valid tests, especially for lots of large objects. Fixes #183
Jörn Zaefferer [Wed, 15 Feb 2012 14:25:15 +0000 (15:25 +0100)]
Fix sourceFromsTacktrace to get the right line in Firefox. Shift the 'error' line away in Chrome to get a match.
Jörn Zaefferer [Wed, 15 Feb 2012 14:22:08 +0000 (15:22 +0100)]
Fix references to test/deepEqual.js
Niall Smart [Tue, 20 Dec 2011 07:13:27 +0000 (23:13 -0800)]
In autorun mode, moduleDone is called without matching moduleStart. Fix issue #184
Jörn Zaefferer [Wed, 15 Feb 2012 13:52:42 +0000 (14:52 +0100)]
Fixture test: allow anything falsy in test as getAttribute in oldIE will return empty string instead of null. We don't really care.
Krinkle [Wed, 28 Dec 2011 20:27:52 +0000 (21:27 +0100)]
Keep label and checkbox together ( i.imgur.com/5Wk3A.png )
Jörn Zaefferer [Wed, 15 Feb 2012 13:44:38 +0000 (14:44 +0100)]
Add readme for themes
Jörn Zaefferer [Wed, 15 Feb 2012 13:40:32 +0000 (14:40 +0100)]
Fix bad global in reset()
Jörn Zaefferer [Wed, 15 Feb 2012 13:39:51 +0000 (14:39 +0100)]
Some cleanup in theme addons
Jörn Zaefferer [Wed, 15 Feb 2012 13:36:41 +0000 (14:36 +0100)]
Update headers
Jörn Zaefferer [Wed, 15 Feb 2012 13:34:30 +0000 (14:34 +0100)]
Update nv.html, add gabe theme based on https://github.com/jquery/qunit/pull/188
Jörn Zaefferer [Fri, 5 Aug 2011 10:14:50 +0000 (12:14 +0200)]
Experiemental custom theme based on https://github.com/jquery/qunit/pull/62 by NV
Jörn Zaefferer [Tue, 14 Feb 2012 17:59:08 +0000 (18:59 +0100)]
Replace deprecated same and equals aliases with placeholders that just throw errors, providing a hint at what to use instead. Rename test file to match that.
Jörn Zaefferer [Tue, 14 Feb 2012 17:51:49 +0000 (18:51 +0100)]
Can't rely on outerHTML for Firefox < 11. Use cloneNode instead.
Jörn Zaefferer [Tue, 14 Feb 2012 17:22:51 +0000 (18:22 +0100)]
Merge remote branch 'conzett/master'
Jörn Zaefferer [Tue, 14 Feb 2012 16:33:36 +0000 (17:33 +0100)]
Cleanup whitespace
Jörn Zaefferer [Tue, 14 Feb 2012 16:24:42 +0000 (17:24 +0100)]
Update sessionStorage support test to latest version from Modernizr, trying to setItem to avoid QUOTA_EXCEEDED_EXCEPTION
Graham Conzett [Wed, 1 Feb 2012 16:34:37 +0000 (11:34 -0500)]
Change fixture reset behavior
On load, set clone qunit-fixture element and set config.fixture equal to
that. Change the reset function to replace the entire qunit-fixture
element with a deep copy of the clone. Essentially, cache a clean copy of
the fixture node on load and replace subsequent fixture nodes with that.
Added tests to check if properties on the fixture are cleared between
tests.
Jörn Zaefferer [Thu, 8 Dec 2011 08:51:06 +0000 (00:51 -0800)]
Merge pull request #181 from simonz/development
following issue #180, escape test names and show stack trace when failed
Seong-A Kong [Thu, 8 Dec 2011 01:19:59 +0000 (10:19 +0900)]
Escaping test names
Seong-A Kong [Thu, 8 Dec 2011 01:19:49 +0000 (10:19 +0900)]
Show exception stack when test failed
Jörn Zaefferer [Thu, 24 Nov 2011 15:38:55 +0000 (16:38 +0100)]
Bump post-release version
Jörn Zaefferer [Thu, 24 Nov 2011 15:38:21 +0000 (16:38 +0100)]
Release v1.2.0
Mike Sherov [Sun, 6 Nov 2011 04:17:37 +0000 (00:17 -0400)]
remove uses of equals(), as it's deprecated in favor of equal()
Philippe Rathé [Sat, 5 Nov 2011 22:41:24 +0000 (18:41 -0400)]
Code review of "Allow objects with no prototype to be tested against object literals."
DomenicDenicola [Tue, 1 Nov 2011 22:49:49 +0000 (18:49 -0400)]
Allow objects with no prototype to tested against object literals.
I often use objects created with `Object.create(null)` as dictionaries, since then they don't have pre-filled dictionary entries for e.g. `constructor`, `hasOwnProperty`, `isPrototypeOf`, etc. However, in my tests, it is quite useful to test the dictionaries I create against object literals (which have `Object.prototype` as their prototype).
This patch makes an exemption to the rule that two objects must have the same constructor, for the case where one has `null` prototype and the other `Object.prototype` as its prototype.
Jimmy Mabey [Wed, 19 Oct 2011 16:43:17 +0000 (13:43 -0300)]
Fix IE8 "Member not found" error
Setting window.constructor causes this error in IE8, which happens when QUnit
extends window.
Ashar Voultoiz [Wed, 19 Oct 2011 14:20:10 +0000 (17:20 +0300)]
Using node-qunit port, the start/stop function are not exposed so we need to prefix any call to them with 'QUnit'. Aka: start() -> QUnit.start()
Jörn Zaefferer [Wed, 12 Oct 2011 20:50:19 +0000 (22:50 +0200)]
Remove the 'let teardown clean up globals test' - IE<9 doesn't support (==buggy) deleting window properties, and that's not worth the trouble, as everything else passes just fine. Fixes #155
Jörn Zaefferer [Wed, 12 Oct 2011 20:44:57 +0000 (22:44 +0200)]
Fix globals in test.js, part 2
Jörn Zaefferer [Wed, 12 Oct 2011 20:44:15 +0000 (22:44 +0200)]
Fix globals in test.js. ?tell wwalser to use ?noglobals everyonce in a while
Jörn Zaefferer [Tue, 11 Oct 2011 10:21:24 +0000 (12:21 +0200)]
Extend readme regarding release process
Jörn Zaefferer [Tue, 11 Oct 2011 10:17:28 +0000 (12:17 +0200)]
Bump post-release version
Jörn Zaefferer [Tue, 11 Oct 2011 10:16:50 +0000 (12:16 +0200)]
Release 1.1.0
Jörn Zaefferer [Tue, 11 Oct 2011 10:13:47 +0000 (12:13 +0200)]
Fixes #134 - Add a window.onerror handler. Makes uncaught errors actually fail the testsuite, instead of going by unnoticed.
Jörn Zaefferer [Tue, 11 Oct 2011 10:12:46 +0000 (12:12 +0200)]
Whitespace cleanup
Jörn Zaefferer [Mon, 10 Oct 2011 19:23:15 +0000 (21:23 +0200)]
Merge remote branch 'trevorparscal/master'
Conflicts:
qunit/qunit.js
Trevor Parscal [Mon, 10 Oct 2011 18:49:32 +0000 (11:49 -0700)]
Fixed IE compatibility issues with using toString on NodeList objects,
which in some browsers results in [object Object] rather than [object
NodeList]. Now using duck typing for NodeList objects based on the
presence of length, length being a number, presence of item method
(which will be typeof string in IE and function in others, so we just
check that it's not undefined) and that item(0) returns the same value
as [0], unless it's empty, in which case item(0) will return 0, while
[0] would return undefined. Tested in IE6, IE8, Firefox 6, Safari 5 and
Chrome 16.
Jörn Zaefferer [Mon, 10 Oct 2011 15:01:34 +0000 (17:01 +0200)]
Update readme with basic notes on releases
Jörn Zaefferer [Mon, 10 Oct 2011 14:59:53 +0000 (16:59 +0200)]
More whitespace/parens cleanup
Jörn Zaefferer [Mon, 10 Oct 2011 14:57:21 +0000 (16:57 +0200)]
Check if setTimeout is available before trying to delay running the next task. Fixes #160
Jörn Zaefferer [Mon, 10 Oct 2011 14:53:24 +0000 (16:53 +0200)]
Whitespace/formatting fix, remove unnecessary parens
Jörn Zaefferer [Mon, 10 Oct 2011 14:48:25 +0000 (16:48 +0200)]
Use alias for Object.prototype.toString
Jörn Zaefferer [Mon, 10 Oct 2011 14:45:55 +0000 (16:45 +0200)]
Merge remote branch 'trevorparscal/master'
Jörn Zaefferer [Mon, 10 Oct 2011 14:35:06 +0000 (16:35 +0200)]
Merge remote branch 'wwalser/recursionBug'
Conflicts:
qunit/qunit.js
Jörn Zaefferer [Mon, 10 Oct 2011 14:16:11 +0000 (16:16 +0200)]
Default 'expected' to null in asyncTest(), same as in test() itself.
Jörn Zaefferer [Mon, 10 Oct 2011 12:13:40 +0000 (14:13 +0200)]
Whitespace cleanup
Jörn Zaefferer [Mon, 10 Oct 2011 12:12:47 +0000 (14:12 +0200)]
Merge remote branch 'mmchaney/master'
Jörn Zaefferer [Mon, 10 Oct 2011 09:53:26 +0000 (11:53 +0200)]
Merge remote branch 'Krinkle/master'
Trevor Parscal [Fri, 7 Oct 2011 21:36:05 +0000 (14:36 -0700)]
Using === instead of ==
This doesn't have any functional difference because we are comparing a
string literal with the results of Object.toString(), but it's better
to be sure that they are the same type.
Trevor Parscal [Fri, 7 Oct 2011 19:39:56 +0000 (12:39 -0700)]
Added more strict array type detection for dump output, and allowed NodeList objects to be output as arrays
This helps prevent treating any object with a length property as an
array, while maintaining the ability to render NodeList objects as
arrays. jsDump output tests still pass after this patch is applied.
Jörn Zaefferer [Thu, 6 Oct 2011 15:51:31 +0000 (11:51 -0400)]
Bump post-release version
Jörn Zaefferer [Thu, 6 Oct 2011 15:49:58 +0000 (11:49 -0400)]
Release 1.0.0
Jörn Zaefferer [Thu, 6 Oct 2011 15:49:16 +0000 (11:49 -0400)]
Preparing 1.0.0 release
Jörn Zaefferer [Fri, 30 Sep 2011 20:39:49 +0000 (16:39 -0400)]
Make QUnit work with TestSwarm
Wesley Walser [Wed, 17 Aug 2011 00:41:58 +0000 (10:41 +1000)]
Fixes a bug where after an async test, assertions could move between test cases because of internal state (config.current) being incorrectly set
Markus Messner-Chaney [Thu, 29 Sep 2011 04:47:18 +0000 (06:47 +0200)]
Simplified check for assertion count and adjusted whitespace
Krinkle [Thu, 29 Sep 2011 00:47:13 +0000 (03:47 +0300)]
Redo of fixing issue #156 (Support Object.prototype extending environment).
* QUnit.diff: Throws exception without this if Object.prototype is set (Property 'length' of undefined. Since Object.prototype.foo doesn't have a property 'rows')
* QUnit.url: Without this fix, if Object.prototype.foo is set, the url will be set to ?foo=...&the=rest.
* saveGlobals: Without this fix, whenever a member is added to Object.prototype, saveGlobals will think it was a global variable in this loop.
---
This time using the call method instead of obj.hasOwnProperty(key), which may fail if the object has that as it's own property (touché!).
Also caching Object.prototype.hasOwn for performance and convenience, as well as toString while at it.
Markus Messner-Chaney [Thu, 22 Sep 2011 11:54:12 +0000 (13:54 +0200)]
Handle expect(0) as expected, i.e. expect(0); ok(true, foo); will cause a test to fail
Jörn Zaefferer [Tue, 20 Sep 2011 16:58:40 +0000 (18:58 +0200)]
Run other addons tests as composite addon demo. Need to move that to /test folder once this setup actually works
Bob Fanger [Sun, 7 Aug 2011 11:15:47 +0000 (13:15 +0200)]
Add-on: New assertion-type: step()
Wesley Walser [Wed, 20 Jul 2011 10:57:27 +0000 (20:57 +1000)]
added parameter to start and stop allowing a user to increment/decrement the semaphore more than once per call
Jörn Zaefferer [Fri, 16 Sep 2011 10:10:00 +0000 (12:10 +0200)]
Update readmes with .md extension for GitHub to render them as markdown
Jörn Zaefferer [Fri, 16 Sep 2011 10:09:27 +0000 (12:09 +0200)]
Update close-enough addon to include readme and match (new) naming convetions
Jörn Zaefferer [Fri, 16 Sep 2011 10:04:13 +0000 (12:04 +0200)]
Merge remote branch 'righi/close-enough-addon'
Jörn Zaefferer [Fri, 16 Sep 2011 10:02:59 +0000 (12:02 +0200)]
Canvas addon: Update file referneces
Jörn Zaefferer [Fri, 16 Sep 2011 10:01:21 +0000 (12:01 +0200)]
Update canvas addon: Rename files and add README
Jörn Zaefferer [Fri, 16 Sep 2011 09:57:02 +0000 (11:57 +0200)]
Merge remote branch 'wwalser/composite'
Daniel Trebbien [Mon, 15 Aug 2011 12:18:56 +0000 (08:18 -0400)]
Fix #142 - Backslash characters in messages should not be escaped
Also, rename `escapeHtml` to `escapeInnerText` to make clear that the
function is for escaping text content.