aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/bootstrap.js
diff options
context:
space:
mode:
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2023-03-30 09:56:33 +0200
committerMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2023-05-10 10:53:57 +0200
commit546214e86956804a1b02da173a4c6c5ddea11454 (patch)
treea686011bcdbb11a42ed2a2b0c7b7e961b0e22593 /tests/lib/bootstrap.js
parentf68d655aff81273d431d5e58bc8af775fc9bd231 (diff)
downloadjquery-ui-546214e86956804a1b02da173a4c6c5ddea11454.tar.gz
jquery-ui-546214e86956804a1b02da173a4c6c5ddea11454.zip
Build: Fork vendors to remove QUnit deprecated API usage
Changes: * add `tests/lib/vendor/**/*` to `.eslintignore` * move `qunit-composite` to `tests/lib` so that we can modify it * move `qunit-assert-classes` to `tests/lib` so that we can modify it * move `qunit-assert-close` to `tests/lib` so that we can modify it * replace `assert.push` with `assert.pushResult` * remove usage of `QUnit.extend` Closes gh-2157
Diffstat (limited to 'tests/lib/bootstrap.js')
-rw-r--r--tests/lib/bootstrap.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/bootstrap.js b/tests/lib/bootstrap.js
index 277fecca7..a5bb1711b 100644
--- a/tests/lib/bootstrap.js
+++ b/tests/lib/bootstrap.js
@@ -12,8 +12,8 @@ requirejs.config( {
"jquery-simulate": "../../../external/jquery-simulate/jquery.simulate",
"lib": "../../lib",
"phantom-bridge": "../../../node_modules/grunt-contrib-qunit/phantomjs/bridge",
- "qunit-assert-classes": "../../../external/qunit-assert-classes/qunit-assert-classes",
- "qunit-assert-close": "../../../external/qunit-assert-close/qunit-assert-close",
+ "qunit-assert-classes": "../../lib/vendor/qunit-assert-classes/qunit-assert-classes",
+ "qunit-assert-close": "../../lib/vendor/qunit-assert-close/qunit-assert-close",
"qunit": "../../../external/qunit/qunit",
"testswarm": "https://swarm.jquery.org/js/inject.js?" + ( new Date() ).getTime(),
"ui": "../../../ui"