aboutsummaryrefslogtreecommitdiffstats
path: root/test/promises_aplus_adapter.js
Commit message (Collapse)AuthorAgeFilesLines
* Deferred: Separate the two paths in jQuery.whenRichard Gibson2016-05-021-22/+0
| | | | | | | | Single- and no-argument calls act like Promise.resolve. Multi-argument calls act like Promise.all. Fixes gh-3029 Closes gh-3059
* Build: correct style tests files which could be automatically correctedOleg Gaidarenko2015-09-071-2/+2
|
* Core: Test all factory use cases from intro.jsMichał Gołębiowski2015-04-271-0/+22
There is a lot of logic in intro.js; now we test four cases: 1. (implicitly, via QUnit tests) A real browser with window being the global 2. Browserify where there are both global & window variables. 3. Node with jsdom where window is passed manually to the jQuery factory. 4. Pure Node with incorrect window passed; jQuery should throw then. Previously the second & fourth case was not tested and the third was tested in a way that interfered with the main test environment. We now also test if in the Browserify case we're not creating a jQuery global by default. Fixes gh-2181 Closes gh-2234