aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/dialog/options.js
Commit message (Collapse)AuthorAgeFilesLines
* Build: Migrate from JSHint & JSCS to ESLintMichał Gołębiowski-Owczarek2021-06-071-0/+1
| | | | | Fixes #15393 Closes gh-1958
* Tests: Ensure no timers are running at the end of each test (#1920)Michał Gołębiowski-Owczarek2020-05-161-2/+3
| | | | | | | | | | | | | This helps fix issues that make tooltip tests sometimes fail when run against jQuery 3.2 or newer due to timing differences. Details: * Add the `moduleAfterEach` function ensuring no timers are running. * Attach this function via `common.testWidget`. * Attach this function to most test suites. * Add a tooltip test helper cleaning up leftover timers. * Rename legacy `setup`/`teardown` hooks to `beforeEach`/`afterEach`. Closes gh-1920
* All: Migrate away from deprecated/removed Core APIsMichał Gołębiowski-Owczarek2019-12-081-9/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary of the changes: * Build: Add jQuery 3.2.0-3.4.1 to versions UI can be tested against * Build: Load jQuery & Migrate via HTTPS * Build: Add package-lock.json to .gitignore * Build: Update jQuery Migrate from 3.0.0 to 3.1.0 * Build: Allow to run tests against jQuery 3.x-git * Build: Fix formatting according to JSCS rules * Build: Disable JSCS for the inlined jQuery Color * All: Switch from $.isArray to Array.isArray (jQuery.isArray will be removed in jQuery 4.0) * All: Switch from `$.isFunction( x )` to `typeof x === "function"` (jQuery.isFunction will be removed in jQuery 4.0) * All: Inline jQuery.isWindow as it'll be removed in jQuery 4.0 * Effects: Fix a timing issue in a variable declaration. Previously, a jQuery object was created, chained & assigned to a variable that was then accessed in a callback used inside of this chained definition. Due to a timing difference in when the callback fired for the first time in latest jQuery master, it was being called before the variable was defined. * Tests: Make dialog & draggable unit tests less strict (newest jQuery returns fractional results in some cases, making comparisons fail when there's a tiny difference) * All: Migrate from $.trim to bare String.prototype.trim (jQuery.trim will be deprecated in jQuery 3.5) Closes gh-1901
* Dialog: Shift to use no globalsAmanpreet Singh2016-04-141-135/+139
|
* Dialog: Escape closeText option before passing it to buttonJörn Zaefferer2015-10-281-1/+6
| | | | | Ref gh-1632 Fixes jquery/api.jqueryui.com#281
* Tests: Fix button space assertions on IE8Jörn Zaefferer2015-10-251-4/+4
| | | | | IE8 still doesn't keep the space in the text (or HTML) representation. We don't really care, so adding more trims in these tests as well.
* Dialog: address review commentsAlexander Schmitz2015-10-081-4/+4
|
* Dialog: Updating dialog and tests for new button APIAlexander Schmitz2015-10-071-10/+8
|
* Dialog: Style updatesAlexander Schmitz2015-09-111-245/+247
| | | | Ref #14246
* Dialog: Style updatesAlexander Schmitz2015-08-211-3/+3
| | | | | Ref #14246 Ref gh-1588
* Effects: Move individual effects into effects folderAlexander Schmitz2015-08-081-2/+2
| | | | Ref #13885
* Dialog: Move dialog into widgets folderAlexander Schmitz2015-08-081-1/+1
| | | | Ref #13885
* Dialog: Remove core event/alias and deprecated module dependenciesAlexander Schmitz2015-05-201-1/+1
|
* Tests: Rename filesScott González2015-04-091-0/+557
Ref gh-1528