mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Build: Add "-debug" suffix to name of karma debug tasks
Ref gh-3922 Close gh-3936
This commit is contained in:
parent
4765bb5c78
commit
7eec97aab3
29
Gruntfile.js
29
Gruntfile.js
@ -211,22 +211,25 @@ module.exports = function( grunt ) {
|
|||||||
autoWatch: false,
|
autoWatch: false,
|
||||||
concurrency: 3,
|
concurrency: 3,
|
||||||
captureTimeout: 20 * 1000,
|
captureTimeout: 20 * 1000,
|
||||||
|
|
||||||
// To debug tests with Karma:
|
|
||||||
// - Run 'grunt karma:chrome' or 'grunt karma:firefox'
|
|
||||||
// (any karma subtask that has singleRun=false)
|
|
||||||
// - Press "Debug" in the opened browser window.
|
|
||||||
singleRun: false
|
|
||||||
},
|
|
||||||
main: {
|
|
||||||
browsers: [ "ChromeHeadless" ],
|
|
||||||
singleRun: true
|
singleRun: true
|
||||||
},
|
},
|
||||||
chrome: {
|
main: {
|
||||||
browsers: [ "Chrome" ]
|
browsers: [ "ChromeHeadless" ]
|
||||||
},
|
},
|
||||||
firefox: {
|
|
||||||
browsers: [ "Firefox" ]
|
// To debug tests with Karma:
|
||||||
|
// 1. Run 'grunt karma:chrome-debug' or 'grunt karma:firefox-debug'
|
||||||
|
// (any karma subtask that has singleRun=false)
|
||||||
|
// 2. Press "Debug" in the opened browser window to start
|
||||||
|
// the tests. Unlike the other karma tasks, the debug task will
|
||||||
|
// keep the browser window open.
|
||||||
|
"chrome-debug": {
|
||||||
|
browsers: [ "Chrome" ],
|
||||||
|
singleRun: false
|
||||||
|
},
|
||||||
|
"firefox-debug": {
|
||||||
|
browsers: [ "Firefox" ],
|
||||||
|
singleRun: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
Loading…
Reference in New Issue
Block a user