2023-09-20 22:18:42 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const jqueryConfig = require( "eslint-config-jquery" );
|
|
|
|
const globals = require( "globals" );
|
|
|
|
|
|
|
|
module.exports = [
|
|
|
|
{
|
|
|
|
|
|
|
|
// Only global ignores will bypass the parser
|
|
|
|
// and avoid JS parsing errors
|
|
|
|
// See https://github.com/eslint/eslint/discussions/17412
|
|
|
|
ignores: [
|
|
|
|
"external",
|
2023-07-27 15:24:49 +00:00
|
|
|
"tmp",
|
2024-06-15 13:10:59 +00:00
|
|
|
"test/data/json_obj.js",
|
|
|
|
"test/data/jquery-*.js",
|
|
|
|
|
|
|
|
// This avoids parsing local main branch builds
|
|
|
|
"dist/jquery.factory.*",
|
|
|
|
"dist-module"
|
2023-09-20 22:18:42 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
|
|
|
|
// Source
|
|
|
|
{
|
|
|
|
files: [ "src/**" ],
|
|
|
|
languageOptions: {
|
2024-06-10 13:01:53 +00:00
|
|
|
ecmaVersion: 2015,
|
2023-09-20 22:18:42 +00:00
|
|
|
|
|
|
|
// The browser env is not enabled on purpose so that code takes
|
|
|
|
// all browser-only globals from window instead of assuming
|
|
|
|
// they're available as globals. This makes it possible to use
|
|
|
|
// jQuery with tools like jsdom which provide a custom window
|
|
|
|
// implementation.
|
|
|
|
globals: {
|
|
|
|
define: false,
|
|
|
|
window: false
|
|
|
|
},
|
|
|
|
sourceType: "commonjs"
|
|
|
|
},
|
|
|
|
rules: {
|
|
|
|
...jqueryConfig.rules,
|
|
|
|
indent: [
|
|
|
|
"error",
|
|
|
|
"tab",
|
|
|
|
{
|
|
|
|
outerIIFEBody: 0,
|
|
|
|
|
|
|
|
// Ignore the top level function defining an AMD module
|
|
|
|
ignoredNodes: [
|
|
|
|
"Program > ExpressionStatement > CallExpression > :last-child > *"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2024-06-10 13:01:53 +00:00
|
|
|
"no-implicit-globals": "error",
|
2024-06-15 13:10:59 +00:00
|
|
|
"no-unused-vars": [
|
|
|
|
"error",
|
|
|
|
{ caughtErrorsIgnorePattern: "^_" }
|
|
|
|
],
|
2023-09-20 22:18:42 +00:00
|
|
|
"one-var": [ "error", { var: "always" } ],
|
|
|
|
strict: [ "error", "function" ]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
files: [ "src/selector.js" ],
|
|
|
|
rules: {
|
|
|
|
indent: "off"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
files: [ "src/wrapper.js" ],
|
|
|
|
languageOptions: {
|
|
|
|
globals: {
|
|
|
|
jQuery: false,
|
|
|
|
module: true
|
|
|
|
},
|
|
|
|
sourceType: "script"
|
|
|
|
},
|
|
|
|
rules: {
|
|
|
|
"no-unused-vars": "off",
|
|
|
|
indent: [
|
|
|
|
"error",
|
|
|
|
"tab",
|
|
|
|
{
|
|
|
|
|
|
|
|
// Unlike other codes, "wrapper.js" is implemented in UMD.
|
|
|
|
// So it required a specific exception for jQuery's UMD
|
|
|
|
// Code Style. This makes that indentation check is not
|
|
|
|
// performed for 1 depth of outer FunctionExpressions
|
|
|
|
ignoredNodes: [
|
|
|
|
"Program > ExpressionStatement > CallExpression > :last-child > *"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
files: [ "src/exports/amd.js" ],
|
|
|
|
languageOptions: {
|
|
|
|
globals: {
|
|
|
|
define: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// Tests
|
|
|
|
{
|
|
|
|
files: [
|
2024-06-10 13:01:53 +00:00
|
|
|
"test/*",
|
|
|
|
"test/data/**",
|
|
|
|
"test/integration/**",
|
|
|
|
"test/unit/**"
|
2023-09-20 22:18:42 +00:00
|
|
|
],
|
|
|
|
ignores: [
|
|
|
|
"test/data/badcall.js",
|
|
|
|
"test/data/badjson.js",
|
|
|
|
"test/data/support/csp.js",
|
|
|
|
"test/data/support/getComputedSupport.js",
|
|
|
|
"test/data/core/jquery-iterability-transpiled.js"
|
|
|
|
],
|
|
|
|
languageOptions: {
|
2024-10-09 16:27:23 +00:00
|
|
|
ecmaVersion: 5,
|
2024-06-10 13:01:53 +00:00
|
|
|
sourceType: "script",
|
2023-09-20 22:18:42 +00:00
|
|
|
globals: {
|
|
|
|
...globals.browser,
|
|
|
|
require: false,
|
2024-10-09 16:27:23 +00:00
|
|
|
Promise: false,
|
|
|
|
Symbol: false,
|
2023-09-20 22:18:42 +00:00
|
|
|
trustedTypes: false,
|
|
|
|
QUnit: false,
|
|
|
|
ajaxTest: false,
|
|
|
|
testIframe: false,
|
|
|
|
createDashboardXML: false,
|
|
|
|
createWithFriesXML: false,
|
|
|
|
createXMLFragment: false,
|
|
|
|
includesModule: false,
|
|
|
|
moduleTeardown: false,
|
|
|
|
url: false,
|
|
|
|
q: false,
|
2024-06-10 13:01:53 +00:00
|
|
|
jQuery: false,
|
|
|
|
$: false,
|
|
|
|
sinon: false,
|
|
|
|
amdDefined: false,
|
|
|
|
fireNative: false,
|
|
|
|
Globals: false,
|
|
|
|
hasPHP: false,
|
|
|
|
isLocal: false,
|
|
|
|
supportjQuery: false,
|
|
|
|
originaljQuery: false,
|
|
|
|
original$: false,
|
|
|
|
baseURL: false,
|
|
|
|
externalHost: false
|
2023-09-20 22:18:42 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
rules: {
|
|
|
|
...jqueryConfig.rules,
|
|
|
|
|
2024-06-10 13:01:53 +00:00
|
|
|
"no-unused-vars": [
|
|
|
|
"error",
|
2024-06-15 13:10:59 +00:00
|
|
|
{
|
|
|
|
args: "after-used",
|
|
|
|
argsIgnorePattern: "^_",
|
|
|
|
caughtErrorsIgnorePattern: "^_"
|
|
|
|
}
|
2024-06-10 13:01:53 +00:00
|
|
|
],
|
2023-09-20 22:18:42 +00:00
|
|
|
|
|
|
|
// Too many errors
|
|
|
|
"max-len": "off",
|
2024-06-10 13:01:53 +00:00
|
|
|
camelcase: "off"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
files: [
|
|
|
|
"test/jquery.js"
|
|
|
|
],
|
|
|
|
languageOptions: {
|
|
|
|
globals: {
|
|
|
|
loadTests: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
files: [
|
|
|
|
"test/unit/core.js"
|
|
|
|
],
|
|
|
|
rules: {
|
|
|
|
|
|
|
|
// Core has several cases where unused vars are expected
|
|
|
|
"no-unused-vars": "off"
|
2023-09-20 22:18:42 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
Tests: migrate testing infrastructure to minimal dependencies
This is a complete rework of our testing infrastructure. The main goal is to modernize and drop deprecated or undermaintained dependencies (specifically, grunt, karma, and testswarm). We've achieved that by limiting our dependency list to ones that are unlikely to drop support any time soon. The new dependency list includes:
- `qunit` (our trusty unit testing library)
- `selenium-webdriver` (for spinning up local browsers)
- `express` (for starting a test server and adding middleware)
- express middleware includes uses of `body-parser` and `raw-body`
- `yargs` (for constructing a CLI with pretty help text)
- BrowserStack (for running each of our QUnit modules separately in all of our supported browsers)
- `browserstack-local` (for opening a local tunnel. This is the same package still currently used in the new Browserstack SDK)
- We are not using any other BrowserStack library. The newest BrowserStack SDK does not fit our needs (and isn't open source). Existing libraries, such as `node-browserstack` or `browserstack-runner`, either do not quite fit our needs, are under-maintained and out-of-date, or are not robust enough to meet all of our requirements. We instead call the [BrowserStack REST API](https://github.com/browserstack/api) directly.
**BrowserStack**
- automatically retries individual modules in case of test failure(s)
- automatically attempts to re-establish broken tunnels
- automatically refreshes the page in case a test run has stalled
- Browser workers are reused when running isolated modules in the same browser
- runs all browsers concurrently and uses as many sessions as are available under the BrowserStack plan. It will wait for available sessions if there are none.
- supports filtering the available list of browsers by browser name, browser version, device, OS, and OS version (see `npm run test:unit -- --list-browsers` for more info). It will retrieve the latest matching browser available if any of those parameters are not specified. Supports latest and latest-\d+ in place of browser version.
- cleans up after itself (closes the local tunnel, stops the test server, etc.)
- Requires `BROWSERSTACK_USERNAME` and `BROWSERSTACK_ACCESS_KEY` environment variables.
**Selenium**
- supports running any local browser as long as the driver is installed, including support for headless mode in Chrome, FF, and Edge
- supports running `basic` tests on the latest [jsdom](https://github.com/jsdom/jsdom#readme), which can be seen in action in this PR (see `test:browserless`)
- Node tests will run as before in PRs and all non-dependabot branches, but now includes tests on real Safari in a GH actions macos image instead of playwright-webkit.
- can run multiple browsers and multiple modules concurrently
Other notes:
- Stale dependencies have been removed and all remaining dependencies have been upgraded with a few exceptions:
- `sinon`: stopped supporting IE in version 10. But, `sinon` has been updated to 9.x.
- `husky`: latest does not support Node 10 and runs on `npm install`. Needed for now until git builds are migrated to GitHub Actions.
- `rollup`: latest does not support Node 10. Needed for now until git builds are migrated to GitHub Actions.
- BrowserStack tests are set to run on each `main` branch commit
- `debug` mode leaves Selenium browsers open whether they pass or fail and leaves browsers with test failures open on BrowserStack. The latter is to avoid leaving open too many sessions.
- This PR includes a workflow to dispatch BrowserStack runs on-demand
- The Node version used for most workflow tests has been upgraded to 20.x
- updated supportjQuery to 3.7.1
Run `npm run test:unit -- --help` for CLI documentation
Close gh-5427
2024-03-05 18:53:39 +00:00
|
|
|
{
|
|
|
|
files: [
|
|
|
|
"test/runner/**/*.js"
|
|
|
|
],
|
|
|
|
languageOptions: {
|
2024-06-10 13:01:53 +00:00
|
|
|
ecmaVersion: "latest",
|
Tests: migrate testing infrastructure to minimal dependencies
This is a complete rework of our testing infrastructure. The main goal is to modernize and drop deprecated or undermaintained dependencies (specifically, grunt, karma, and testswarm). We've achieved that by limiting our dependency list to ones that are unlikely to drop support any time soon. The new dependency list includes:
- `qunit` (our trusty unit testing library)
- `selenium-webdriver` (for spinning up local browsers)
- `express` (for starting a test server and adding middleware)
- express middleware includes uses of `body-parser` and `raw-body`
- `yargs` (for constructing a CLI with pretty help text)
- BrowserStack (for running each of our QUnit modules separately in all of our supported browsers)
- `browserstack-local` (for opening a local tunnel. This is the same package still currently used in the new Browserstack SDK)
- We are not using any other BrowserStack library. The newest BrowserStack SDK does not fit our needs (and isn't open source). Existing libraries, such as `node-browserstack` or `browserstack-runner`, either do not quite fit our needs, are under-maintained and out-of-date, or are not robust enough to meet all of our requirements. We instead call the [BrowserStack REST API](https://github.com/browserstack/api) directly.
**BrowserStack**
- automatically retries individual modules in case of test failure(s)
- automatically attempts to re-establish broken tunnels
- automatically refreshes the page in case a test run has stalled
- Browser workers are reused when running isolated modules in the same browser
- runs all browsers concurrently and uses as many sessions as are available under the BrowserStack plan. It will wait for available sessions if there are none.
- supports filtering the available list of browsers by browser name, browser version, device, OS, and OS version (see `npm run test:unit -- --list-browsers` for more info). It will retrieve the latest matching browser available if any of those parameters are not specified. Supports latest and latest-\d+ in place of browser version.
- cleans up after itself (closes the local tunnel, stops the test server, etc.)
- Requires `BROWSERSTACK_USERNAME` and `BROWSERSTACK_ACCESS_KEY` environment variables.
**Selenium**
- supports running any local browser as long as the driver is installed, including support for headless mode in Chrome, FF, and Edge
- supports running `basic` tests on the latest [jsdom](https://github.com/jsdom/jsdom#readme), which can be seen in action in this PR (see `test:browserless`)
- Node tests will run as before in PRs and all non-dependabot branches, but now includes tests on real Safari in a GH actions macos image instead of playwright-webkit.
- can run multiple browsers and multiple modules concurrently
Other notes:
- Stale dependencies have been removed and all remaining dependencies have been upgraded with a few exceptions:
- `sinon`: stopped supporting IE in version 10. But, `sinon` has been updated to 9.x.
- `husky`: latest does not support Node 10 and runs on `npm install`. Needed for now until git builds are migrated to GitHub Actions.
- `rollup`: latest does not support Node 10. Needed for now until git builds are migrated to GitHub Actions.
- BrowserStack tests are set to run on each `main` branch commit
- `debug` mode leaves Selenium browsers open whether they pass or fail and leaves browsers with test failures open on BrowserStack. The latter is to avoid leaving open too many sessions.
- This PR includes a workflow to dispatch BrowserStack runs on-demand
- The Node version used for most workflow tests has been upgraded to 20.x
- updated supportjQuery to 3.7.1
Run `npm run test:unit -- --help` for CLI documentation
Close gh-5427
2024-03-05 18:53:39 +00:00
|
|
|
globals: {
|
|
|
|
...globals.node
|
2024-06-10 13:01:53 +00:00
|
|
|
}
|
Tests: migrate testing infrastructure to minimal dependencies
This is a complete rework of our testing infrastructure. The main goal is to modernize and drop deprecated or undermaintained dependencies (specifically, grunt, karma, and testswarm). We've achieved that by limiting our dependency list to ones that are unlikely to drop support any time soon. The new dependency list includes:
- `qunit` (our trusty unit testing library)
- `selenium-webdriver` (for spinning up local browsers)
- `express` (for starting a test server and adding middleware)
- express middleware includes uses of `body-parser` and `raw-body`
- `yargs` (for constructing a CLI with pretty help text)
- BrowserStack (for running each of our QUnit modules separately in all of our supported browsers)
- `browserstack-local` (for opening a local tunnel. This is the same package still currently used in the new Browserstack SDK)
- We are not using any other BrowserStack library. The newest BrowserStack SDK does not fit our needs (and isn't open source). Existing libraries, such as `node-browserstack` or `browserstack-runner`, either do not quite fit our needs, are under-maintained and out-of-date, or are not robust enough to meet all of our requirements. We instead call the [BrowserStack REST API](https://github.com/browserstack/api) directly.
**BrowserStack**
- automatically retries individual modules in case of test failure(s)
- automatically attempts to re-establish broken tunnels
- automatically refreshes the page in case a test run has stalled
- Browser workers are reused when running isolated modules in the same browser
- runs all browsers concurrently and uses as many sessions as are available under the BrowserStack plan. It will wait for available sessions if there are none.
- supports filtering the available list of browsers by browser name, browser version, device, OS, and OS version (see `npm run test:unit -- --list-browsers` for more info). It will retrieve the latest matching browser available if any of those parameters are not specified. Supports latest and latest-\d+ in place of browser version.
- cleans up after itself (closes the local tunnel, stops the test server, etc.)
- Requires `BROWSERSTACK_USERNAME` and `BROWSERSTACK_ACCESS_KEY` environment variables.
**Selenium**
- supports running any local browser as long as the driver is installed, including support for headless mode in Chrome, FF, and Edge
- supports running `basic` tests on the latest [jsdom](https://github.com/jsdom/jsdom#readme), which can be seen in action in this PR (see `test:browserless`)
- Node tests will run as before in PRs and all non-dependabot branches, but now includes tests on real Safari in a GH actions macos image instead of playwright-webkit.
- can run multiple browsers and multiple modules concurrently
Other notes:
- Stale dependencies have been removed and all remaining dependencies have been upgraded with a few exceptions:
- `sinon`: stopped supporting IE in version 10. But, `sinon` has been updated to 9.x.
- `husky`: latest does not support Node 10 and runs on `npm install`. Needed for now until git builds are migrated to GitHub Actions.
- `rollup`: latest does not support Node 10. Needed for now until git builds are migrated to GitHub Actions.
- BrowserStack tests are set to run on each `main` branch commit
- `debug` mode leaves Selenium browsers open whether they pass or fail and leaves browsers with test failures open on BrowserStack. The latter is to avoid leaving open too many sessions.
- This PR includes a workflow to dispatch BrowserStack runs on-demand
- The Node version used for most workflow tests has been upgraded to 20.x
- updated supportjQuery to 3.7.1
Run `npm run test:unit -- --help` for CLI documentation
Close gh-5427
2024-03-05 18:53:39 +00:00
|
|
|
},
|
|
|
|
rules: {
|
2024-06-10 13:01:53 +00:00
|
|
|
...jqueryConfig.rules,
|
2024-08-11 15:17:34 +00:00
|
|
|
"no-implicit-globals": "error",
|
|
|
|
"no-unused-vars": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
args: "after-used",
|
|
|
|
argsIgnorePattern: "^_",
|
|
|
|
caughtErrorsIgnorePattern: "^_"
|
|
|
|
}
|
|
|
|
]
|
Tests: migrate testing infrastructure to minimal dependencies
This is a complete rework of our testing infrastructure. The main goal is to modernize and drop deprecated or undermaintained dependencies (specifically, grunt, karma, and testswarm). We've achieved that by limiting our dependency list to ones that are unlikely to drop support any time soon. The new dependency list includes:
- `qunit` (our trusty unit testing library)
- `selenium-webdriver` (for spinning up local browsers)
- `express` (for starting a test server and adding middleware)
- express middleware includes uses of `body-parser` and `raw-body`
- `yargs` (for constructing a CLI with pretty help text)
- BrowserStack (for running each of our QUnit modules separately in all of our supported browsers)
- `browserstack-local` (for opening a local tunnel. This is the same package still currently used in the new Browserstack SDK)
- We are not using any other BrowserStack library. The newest BrowserStack SDK does not fit our needs (and isn't open source). Existing libraries, such as `node-browserstack` or `browserstack-runner`, either do not quite fit our needs, are under-maintained and out-of-date, or are not robust enough to meet all of our requirements. We instead call the [BrowserStack REST API](https://github.com/browserstack/api) directly.
**BrowserStack**
- automatically retries individual modules in case of test failure(s)
- automatically attempts to re-establish broken tunnels
- automatically refreshes the page in case a test run has stalled
- Browser workers are reused when running isolated modules in the same browser
- runs all browsers concurrently and uses as many sessions as are available under the BrowserStack plan. It will wait for available sessions if there are none.
- supports filtering the available list of browsers by browser name, browser version, device, OS, and OS version (see `npm run test:unit -- --list-browsers` for more info). It will retrieve the latest matching browser available if any of those parameters are not specified. Supports latest and latest-\d+ in place of browser version.
- cleans up after itself (closes the local tunnel, stops the test server, etc.)
- Requires `BROWSERSTACK_USERNAME` and `BROWSERSTACK_ACCESS_KEY` environment variables.
**Selenium**
- supports running any local browser as long as the driver is installed, including support for headless mode in Chrome, FF, and Edge
- supports running `basic` tests on the latest [jsdom](https://github.com/jsdom/jsdom#readme), which can be seen in action in this PR (see `test:browserless`)
- Node tests will run as before in PRs and all non-dependabot branches, but now includes tests on real Safari in a GH actions macos image instead of playwright-webkit.
- can run multiple browsers and multiple modules concurrently
Other notes:
- Stale dependencies have been removed and all remaining dependencies have been upgraded with a few exceptions:
- `sinon`: stopped supporting IE in version 10. But, `sinon` has been updated to 9.x.
- `husky`: latest does not support Node 10 and runs on `npm install`. Needed for now until git builds are migrated to GitHub Actions.
- `rollup`: latest does not support Node 10. Needed for now until git builds are migrated to GitHub Actions.
- BrowserStack tests are set to run on each `main` branch commit
- `debug` mode leaves Selenium browsers open whether they pass or fail and leaves browsers with test failures open on BrowserStack. The latter is to avoid leaving open too many sessions.
- This PR includes a workflow to dispatch BrowserStack runs on-demand
- The Node version used for most workflow tests has been upgraded to 20.x
- updated supportjQuery to 3.7.1
Run `npm run test:unit -- --help` for CLI documentation
Close gh-5427
2024-03-05 18:53:39 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
2024-06-15 13:10:59 +00:00
|
|
|
files: [
|
|
|
|
"test/runner/listeners.js"
|
|
|
|
],
|
Tests: migrate testing infrastructure to minimal dependencies
This is a complete rework of our testing infrastructure. The main goal is to modernize and drop deprecated or undermaintained dependencies (specifically, grunt, karma, and testswarm). We've achieved that by limiting our dependency list to ones that are unlikely to drop support any time soon. The new dependency list includes:
- `qunit` (our trusty unit testing library)
- `selenium-webdriver` (for spinning up local browsers)
- `express` (for starting a test server and adding middleware)
- express middleware includes uses of `body-parser` and `raw-body`
- `yargs` (for constructing a CLI with pretty help text)
- BrowserStack (for running each of our QUnit modules separately in all of our supported browsers)
- `browserstack-local` (for opening a local tunnel. This is the same package still currently used in the new Browserstack SDK)
- We are not using any other BrowserStack library. The newest BrowserStack SDK does not fit our needs (and isn't open source). Existing libraries, such as `node-browserstack` or `browserstack-runner`, either do not quite fit our needs, are under-maintained and out-of-date, or are not robust enough to meet all of our requirements. We instead call the [BrowserStack REST API](https://github.com/browserstack/api) directly.
**BrowserStack**
- automatically retries individual modules in case of test failure(s)
- automatically attempts to re-establish broken tunnels
- automatically refreshes the page in case a test run has stalled
- Browser workers are reused when running isolated modules in the same browser
- runs all browsers concurrently and uses as many sessions as are available under the BrowserStack plan. It will wait for available sessions if there are none.
- supports filtering the available list of browsers by browser name, browser version, device, OS, and OS version (see `npm run test:unit -- --list-browsers` for more info). It will retrieve the latest matching browser available if any of those parameters are not specified. Supports latest and latest-\d+ in place of browser version.
- cleans up after itself (closes the local tunnel, stops the test server, etc.)
- Requires `BROWSERSTACK_USERNAME` and `BROWSERSTACK_ACCESS_KEY` environment variables.
**Selenium**
- supports running any local browser as long as the driver is installed, including support for headless mode in Chrome, FF, and Edge
- supports running `basic` tests on the latest [jsdom](https://github.com/jsdom/jsdom#readme), which can be seen in action in this PR (see `test:browserless`)
- Node tests will run as before in PRs and all non-dependabot branches, but now includes tests on real Safari in a GH actions macos image instead of playwright-webkit.
- can run multiple browsers and multiple modules concurrently
Other notes:
- Stale dependencies have been removed and all remaining dependencies have been upgraded with a few exceptions:
- `sinon`: stopped supporting IE in version 10. But, `sinon` has been updated to 9.x.
- `husky`: latest does not support Node 10 and runs on `npm install`. Needed for now until git builds are migrated to GitHub Actions.
- `rollup`: latest does not support Node 10. Needed for now until git builds are migrated to GitHub Actions.
- BrowserStack tests are set to run on each `main` branch commit
- `debug` mode leaves Selenium browsers open whether they pass or fail and leaves browsers with test failures open on BrowserStack. The latter is to avoid leaving open too many sessions.
- This PR includes a workflow to dispatch BrowserStack runs on-demand
- The Node version used for most workflow tests has been upgraded to 20.x
- updated supportjQuery to 3.7.1
Run `npm run test:unit -- --help` for CLI documentation
Close gh-5427
2024-03-05 18:53:39 +00:00
|
|
|
languageOptions: {
|
|
|
|
ecmaVersion: 5,
|
2024-06-10 13:01:53 +00:00
|
|
|
sourceType: "script",
|
|
|
|
globals: {
|
|
|
|
...globals.browser,
|
|
|
|
QUnit: false,
|
|
|
|
Symbol: false
|
|
|
|
}
|
Tests: migrate testing infrastructure to minimal dependencies
This is a complete rework of our testing infrastructure. The main goal is to modernize and drop deprecated or undermaintained dependencies (specifically, grunt, karma, and testswarm). We've achieved that by limiting our dependency list to ones that are unlikely to drop support any time soon. The new dependency list includes:
- `qunit` (our trusty unit testing library)
- `selenium-webdriver` (for spinning up local browsers)
- `express` (for starting a test server and adding middleware)
- express middleware includes uses of `body-parser` and `raw-body`
- `yargs` (for constructing a CLI with pretty help text)
- BrowserStack (for running each of our QUnit modules separately in all of our supported browsers)
- `browserstack-local` (for opening a local tunnel. This is the same package still currently used in the new Browserstack SDK)
- We are not using any other BrowserStack library. The newest BrowserStack SDK does not fit our needs (and isn't open source). Existing libraries, such as `node-browserstack` or `browserstack-runner`, either do not quite fit our needs, are under-maintained and out-of-date, or are not robust enough to meet all of our requirements. We instead call the [BrowserStack REST API](https://github.com/browserstack/api) directly.
**BrowserStack**
- automatically retries individual modules in case of test failure(s)
- automatically attempts to re-establish broken tunnels
- automatically refreshes the page in case a test run has stalled
- Browser workers are reused when running isolated modules in the same browser
- runs all browsers concurrently and uses as many sessions as are available under the BrowserStack plan. It will wait for available sessions if there are none.
- supports filtering the available list of browsers by browser name, browser version, device, OS, and OS version (see `npm run test:unit -- --list-browsers` for more info). It will retrieve the latest matching browser available if any of those parameters are not specified. Supports latest and latest-\d+ in place of browser version.
- cleans up after itself (closes the local tunnel, stops the test server, etc.)
- Requires `BROWSERSTACK_USERNAME` and `BROWSERSTACK_ACCESS_KEY` environment variables.
**Selenium**
- supports running any local browser as long as the driver is installed, including support for headless mode in Chrome, FF, and Edge
- supports running `basic` tests on the latest [jsdom](https://github.com/jsdom/jsdom#readme), which can be seen in action in this PR (see `test:browserless`)
- Node tests will run as before in PRs and all non-dependabot branches, but now includes tests on real Safari in a GH actions macos image instead of playwright-webkit.
- can run multiple browsers and multiple modules concurrently
Other notes:
- Stale dependencies have been removed and all remaining dependencies have been upgraded with a few exceptions:
- `sinon`: stopped supporting IE in version 10. But, `sinon` has been updated to 9.x.
- `husky`: latest does not support Node 10 and runs on `npm install`. Needed for now until git builds are migrated to GitHub Actions.
- `rollup`: latest does not support Node 10. Needed for now until git builds are migrated to GitHub Actions.
- BrowserStack tests are set to run on each `main` branch commit
- `debug` mode leaves Selenium browsers open whether they pass or fail and leaves browsers with test failures open on BrowserStack. The latter is to avoid leaving open too many sessions.
- This PR includes a workflow to dispatch BrowserStack runs on-demand
- The Node version used for most workflow tests has been upgraded to 20.x
- updated supportjQuery to 3.7.1
Run `npm run test:unit -- --help` for CLI documentation
Close gh-5427
2024-03-05 18:53:39 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2023-09-20 22:18:42 +00:00
|
|
|
{
|
|
|
|
files: [
|
2024-06-10 13:01:53 +00:00
|
|
|
"test/data/testinit.js",
|
2023-09-20 22:18:42 +00:00
|
|
|
"test/data/testrunner.js",
|
|
|
|
"test/data/core/jquery-iterability-transpiled-es6.js"
|
|
|
|
],
|
|
|
|
languageOptions: {
|
2024-06-10 13:01:53 +00:00
|
|
|
ecmaVersion: 2015,
|
|
|
|
sourceType: "script",
|
|
|
|
globals: {
|
|
|
|
...globals.browser
|
|
|
|
}
|
|
|
|
},
|
|
|
|
rules: {
|
|
|
|
...jqueryConfig.rules,
|
|
|
|
strict: [ "error", "function" ]
|
2023-09-20 22:18:42 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
files: [
|
2024-06-10 13:01:53 +00:00
|
|
|
"test/data/testinit.js"
|
2023-09-20 22:18:42 +00:00
|
|
|
],
|
|
|
|
rules: {
|
2024-06-10 13:01:53 +00:00
|
|
|
strict: [ "error", "global" ]
|
2023-09-20 22:18:42 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
files: [
|
2024-06-10 13:01:53 +00:00
|
|
|
"test/unit/deferred.js"
|
2023-09-20 22:18:42 +00:00
|
|
|
],
|
|
|
|
rules: {
|
2024-06-10 13:01:53 +00:00
|
|
|
|
|
|
|
// Deferred tests set strict mode for certain tests
|
|
|
|
strict: "off"
|
2023-09-20 22:18:42 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
files: [
|
2024-06-10 13:01:53 +00:00
|
|
|
"eslint.config.js",
|
2023-07-27 15:24:49 +00:00
|
|
|
".release-it.js",
|
|
|
|
"build/**",
|
2024-06-10 13:01:53 +00:00
|
|
|
"test/node_smoke_tests/**",
|
|
|
|
"test/bundler_smoke_tests/**/*",
|
|
|
|
"test/promises_aplus_adapters/**",
|
2024-08-11 15:17:34 +00:00
|
|
|
"test/middleware-mockserver.cjs"
|
2023-09-20 22:18:42 +00:00
|
|
|
],
|
|
|
|
languageOptions: {
|
2024-06-10 13:01:53 +00:00
|
|
|
ecmaVersion: "latest",
|
|
|
|
sourceType: "commonjs",
|
2023-09-20 22:18:42 +00:00
|
|
|
globals: {
|
2024-06-10 13:01:53 +00:00
|
|
|
...globals.browser,
|
|
|
|
...globals.node
|
2023-09-20 22:18:42 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
rules: {
|
|
|
|
...jqueryConfig.rules,
|
2024-06-10 13:01:53 +00:00
|
|
|
"no-implicit-globals": "error",
|
2024-06-15 13:10:59 +00:00
|
|
|
"no-unused-vars": [
|
|
|
|
"error",
|
|
|
|
{ caughtErrorsIgnorePattern: "^_" }
|
|
|
|
],
|
2023-09-20 22:18:42 +00:00
|
|
|
strict: [ "error", "global" ]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
files: [
|
2023-07-27 15:24:49 +00:00
|
|
|
"build/**/*.js",
|
2024-06-10 13:01:53 +00:00
|
|
|
"**/*.mjs"
|
2023-09-20 22:18:42 +00:00
|
|
|
],
|
|
|
|
languageOptions: {
|
2024-06-10 13:01:53 +00:00
|
|
|
sourceType: "module"
|
2023-09-20 22:18:42 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
files: [
|
|
|
|
"dist/jquery.js",
|
|
|
|
"dist/jquery.slim.js"
|
|
|
|
],
|
|
|
|
languageOptions: {
|
|
|
|
globals: {
|
|
|
|
define: false,
|
|
|
|
module: false,
|
2024-06-10 13:01:53 +00:00
|
|
|
Symbol: false,
|
|
|
|
window: false
|
2023-09-20 22:18:42 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
rules: {
|
|
|
|
...jqueryConfig.rules,
|
|
|
|
|
2024-06-10 13:01:53 +00:00
|
|
|
"no-implicit-globals": "error",
|
|
|
|
|
2023-09-20 22:18:42 +00:00
|
|
|
// That is okay for the built version
|
|
|
|
"no-multiple-empty-lines": "off",
|
|
|
|
|
2024-06-15 13:10:59 +00:00
|
|
|
"no-unused-vars": [
|
|
|
|
"error",
|
|
|
|
{ caughtErrorsIgnorePattern: "^_" }
|
|
|
|
],
|
|
|
|
|
2023-09-20 22:18:42 +00:00
|
|
|
// When custom compilation is used, the version string
|
|
|
|
// can get large. Accept that in the built version.
|
|
|
|
"max-len": "off",
|
|
|
|
"one-var": "off"
|
|
|
|
}
|
2024-06-10 13:01:53 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
files: [
|
|
|
|
"dist/**"
|
|
|
|
],
|
|
|
|
languageOptions: {
|
|
|
|
ecmaVersion: 5,
|
|
|
|
sourceType: "script"
|
|
|
|
}
|
2023-09-20 22:18:42 +00:00
|
|
|
}
|
|
|
|
];
|