diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2019-12-16 19:33:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-16 19:33:49 +0100 |
commit | 341c6d1b5abe4829f59fbc32e93f6a6a1afb900f (patch) | |
tree | 969b366a31121f0ac16893164dd4b9e738e89240 /package.json | |
parent | f37c2e51f36c8f8bab3879064a90e86a685feafc (diff) | |
download | jquery-341c6d1b5abe4829f59fbc32e93f6a6a1afb900f.tar.gz jquery-341c6d1b5abe4829f59fbc32e93f6a6a1afb900f.zip |
Build: Make Karma work in ES modules mode
Also, run such a suite in CI to make sure modules are working as expected
when used directly.
Closes gh-4550
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package.json b/package.json index abfee2589..73789b2c2 100644 --- a/package.json +++ b/package.json @@ -72,7 +72,9 @@ "start": "grunt watch", "test:browserless": "grunt && grunt test:slow", "test:browser": "grunt && grunt karma:main", - "test": "grunt && grunt test:slow && grunt karma:main", + "test:esmodules": "grunt && grunt karma:esmodules", + "test:amd": "grunt && grunt karma:amd", + "test": "grunt && grunt test:slow && grunt karma:main && grunt karma:esmodules && grunt karma:amd", "jenkins": "npm run test:browserless" }, "commitplease": { |