1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-13 09:04:14 +02:00

Some fixes (#38354)

This commit is contained in:
Mukesh Rana
2023-03-28 21:26:26 +05:30
committed by XhmikosR
parent d42acd2453
commit b5dac1e50a
3 changed files with 14 additions and 12 deletions

View File

@@ -53,25 +53,25 @@ const browsers = {
platformName: 'Windows 10'
}
},
iphone7: {
iphone11: {
platformName: 'ios',
platformVersion: '12',
platformVersion: '15',
browserName: 'Safari',
deviceName: 'iPhone 7',
deviceName: 'iPhone 13',
isRealMobile: true
},
iphone12: {
iphone14: {
platformName: 'ios',
platformVersion: '16',
browserName: 'Safari',
deviceName: 'iPhone 12',
deviceName: 'iPhone 14',
isRealMobile: true
},
pixel2: {
galaxyS22: {
platformName: 'android',
platformVersion: '12',
browserName: 'Chrome',
deviceName: 'Google Pixel 6',
deviceName: 'Galaxy S22 5G',
isRealMobile: true
}
},

View File

@@ -65,10 +65,10 @@ const config = {
colors: true,
autoWatch: false,
singleRun: true,
captureTimeout: 90_000,
captureTimeout: 180_000,
browserDisconnectTolerance: 3,
browserDisconnectTimeout: 90_000,
browserNoActivityTimeout: 90_000,
browserDisconnectTimeout: 180_000,
browserNoActivityTimeout: 180_000,
concurrency: Number.POSITIVE_INFINITY,
client: {
clearContext: false

View File

@@ -72,7 +72,8 @@
"js-test-integration-bundle": "rollup --config js/tests/integration/rollup.bundle.js",
"js-test-integration-modularity": "rollup --config js/tests/integration/rollup.bundle-modularity.js",
"js-test-cloud": "cross-env BROWSERSTACK=true npm run js-test-karma",
"js-test-ltcloud": "cross-env LAMBDATEST=true npm-run-all --parallel --race js-test-ltTunnel js-test-karma",
"js-test-ltcloud": "cross-env LAMBDATEST=true npm-run-all --parallel --race js-test-ltLocal js-test-karma",
"js-test-ltLocal": "npm-run-all js-test-ltTunnel sleep",
"js-test-ltTunnel": "node js/tests/lt-local",
"js-test-jquery": "cross-env JQUERY=true npm run js-test-karma",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel js-lint css-lint lockfile-lint",
@@ -99,7 +100,8 @@
"watch-css-docs": "nodemon --watch site/assets/scss/ --ext scss --exec \"npm run css-lint\"",
"watch-css-test": "nodemon --watch scss/ --ext scss,js --exec \"npm run css-test\"",
"watch-js-main": "nodemon --watch js/src/ --ext js --exec \"npm-run-all js-lint js-compile\"",
"watch-js-docs": "nodemon --watch site/assets/js/ --ext js --exec \"npm run js-lint\""
"watch-js-docs": "nodemon --watch site/assets/js/ --ext js --exec \"npm run js-lint\"",
"sleep": "sleep 5"
},
"peerDependencies": {
"@popperjs/core": "^2.11.8"