aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/basic.js
Commit message (Collapse)AuthorAgeFilesLines
* Manipulation: Make jQuery.htmlPrefilter an identity functionMichał Gołębiowski-Owczarek2020-03-161-12/+12
| | | | | | Closes gh-4642 (cherry picked from 90fed4b453a5becdb7f173d9e3c1492390a1441f)
* Tests: Pass a number of necessary done() calls to assert.async()Michał Gołębiowski-Owczarek2020-03-021-4/+4
| | | | | | | | | It is no longer needed to create `done` wrappers in tests that require multiple async operations to complete. Closes gh-4633 (cherry picked from commit 364476c3dc1231603ba61fc08068fa89fb095e1a)
* Core: Deprecate jQuery.trimShashanka Nataraj2019-09-261-2/+1
| | | | | | | Fixes gh-4363 Closes gh-4461 (cherry picked from 5ea5946094784f68437ef26d463dfcfbbbaff1f6)
* Build: Run the basic test suite in jsdomMichał Gołębiowski-Owczarek2019-03-111-1/+3
| | | | | | The basic test suite is now run in jsdom on all supported Node.js versions (8, 10 & 11 as of now). Closes gh-4310
* Build: Update test code for compatibility with QUnit 2.x (#4297)abnud12019-02-181-1/+1
| | | | | | | | Also, run `grunt npmcopy` to sync the "external" directory with dependencies from package.json. For example, the Sinon library version didn't match. Ref gh-4234 Closes gh-4297
* Tests: fix number of expected assertions in basic coreTimmy Willison2018-01-161-1/+1
|
* Core: deprecate jQuery.typeJason Bedard2018-01-161-5/+1
| | | | | Fixes gh-3605 Close gh-3895
* Core: deprecate jQuery.isNumericJason Bedard2018-01-151-4/+1
| | | | | Fixes gh-2960 Closes gh-3888
* Core: deprecate jQuery.isFunctionJason Bedard2018-01-151-4/+1
| | | | Fixes gh-3609
* Tests: Add support for running unit tests via grunt with karmaTimo Tijhof2017-12-181-3/+3
| | | | | | | | | | | | | - Update QUnit to 1.23.1 - Remove unused dl#dl from test/index.html - Remove unused map#imgmap from test/index.html - Ensure all urls to data use baseURI - Add the 'grunt karma:main' task - customContextFile & customDebugFile - Add 'npm run jenkins' script Close gh-3744 Fixes gh-1999
* Core: Deprecate jQuery.isWindowShashanka Nataraj2017-07-101-4/+1
| | | | | Fixes gh-3629 Close gh-3702
* Docs:Tests: Remove obsolete code from tests, update support commentsMichał Gołębiowski2016-03-081-20/+5
| | | | | | | | | | Support comments that were lacking the final IE/Edge version that exhibits the bug were checked & updated. Links to the Chromium bug tracker were updated. Code in tests related to unsupported browsers (like Android 2.3 in non-basic tests) has been removed. Fixes gh-2868 Closes gh-2949
* Core: Deprecate jQuery.parseJSONMichał Gołębiowski2016-03-021-3/+1
| | | | | Fixes gh-2800 Closes gh-2948
* CSS: Make show/hide/toggle methods a moduleDave Methvin2015-10-181-1/+9
| | | | | | | | Unit test changes some uses of .show() and .hide() to .css( "display", ... ), there was already an implicit assumption in several of the existing tests. Fixes gh-2193 Close gh-2648
* Tests: Really fix tests in IE 8 this timeMichał Gołębiowski2015-09-081-1/+1
| | | | | | | | | IE 8 doesn't have indexOf on arrays. Also, one toLowerCase() was missing. Oops. This commit is not necessary on master but has been brought here to keep tests similar in both branches. (cherry-picked from 1b48eef4caf7fa3aba0ee1a3473e0d46487d20ea)
* Tests: Make basic tests work in IE 8Michał Gołębiowski2015-09-081-5/+43
| | | | | | | IE 8 prints tag names in upper case which was breaking some tests. This commit is not necessary on master but has been brought here to keep tests similar in both branches.
* Tests: Add simple tests for Android 2.3Michał Gołębiowski2015-09-081-0/+264
Fixes gh-2505 Closes gh-2509 Refs gh-2483