Skip to content

Commit 39834a9

Browse files
chore(deps-dev): bump the testing group across 1 directory with 2 updates (#1103)
* chore(deps-dev): bump the testing group across 1 directory with 2 updates Bumps the testing group with 2 updates in the / directory: [@types/jasmine](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jasmine) and [jasmine-core](https://github.com/jasmine/jasmine). Updates `@types/jasmine` from 5.1.9 to 5.1.11 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jasmine) Updates `jasmine-core` from 5.10.0 to 5.12.0 - [Release notes](https://github.com/jasmine/jasmine/releases) - [Changelog](https://github.com/jasmine/jasmine/blob/main/RELEASE.md) - [Commits](jasmine/jasmine@v5.10.0...v5.12.0) --- updated-dependencies: - dependency-name: "@types/jasmine" dependency-version: 5.1.11 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: testing - dependency-name: jasmine-core dependency-version: 5.12.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: testing ... Signed-off-by: dependabot[bot] <[email protected]> * fix(karma): disable auto-restart on file change to revent hang on ci builds --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: bingenito <[email protected]>
1 parent a3ed333 commit 39834a9

File tree

9 files changed

+23
-23
lines changed

9 files changed

+23
-23
lines changed

examples/fdc3-chart-and-grid/js-datagrid/karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,6 @@ module.exports = function(config) {
9797
// how many browser instances should be started simultaneously
9898
//concurrency: Infinity,
9999

100-
restartOnFileChange: true
100+
restartOnFileChange: false
101101
})
102102
}

examples/fdc3-chart-and-grid/js-datagrid/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
"@angular-devkit/build-angular": "17.3.17",
3232
"@angular/cli": "17.3.17",
3333
"@angular/compiler-cli": "17.3.12",
34-
"@types/jasmine": "5.1.9",
35-
"jasmine-core": "5.10.0",
34+
"@types/jasmine": "5.1.11",
35+
"jasmine-core": "5.12.0",
3636
"karma": "6.4.4",
3737
"karma-chrome-launcher": "~3.2.0",
3838
"karma-coverage": "2.2.1",

examples/fdc3-trade-simulator/js-order-book/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"@angular/cli": "^17.3.8",
3131
"@angular/compiler-cli": "^17.3.0",
3232
"@types/jasmine": "~5.1.0",
33-
"jasmine-core": "~5.10.0",
33+
"jasmine-core": "~5.12.0",
3434
"karma": "~6.4.0",
3535
"karma-chrome-launcher": "~3.2.0",
3636
"karma-coverage": "~2.2.0",

examples/fdc3-trade-simulator/js-trader-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"@angular/cli": "^17.3.8",
3232
"@angular/compiler-cli": "^17.3.0",
3333
"@types/jasmine": "~5.1.0",
34-
"jasmine-core": "~5.10.0",
34+
"jasmine-core": "~5.12.0",
3535
"karma": "~6.4.0",
3636
"karma-chrome-launcher": "~3.2.0",
3737
"karma-coverage": "~2.2.0",

examples/js-chart-and-grid-messagerouter/js-datagrid/karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,6 @@ module.exports = function(config) {
9797
// how many browser instances should be started simultaneously
9898
//concurrency: Infinity,
9999

100-
restartOnFileChange: true
100+
restartOnFileChange: false
101101
})
102102
}

examples/js-chart-and-grid-messagerouter/js-datagrid/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
"@angular-devkit/build-angular": "17.3.17",
3232
"@angular/cli": "17.3.17",
3333
"@angular/compiler-cli": "17.3.12",
34-
"@types/jasmine": "5.1.9",
35-
"jasmine-core": "5.10.0",
34+
"@types/jasmine": "5.1.11",
35+
"jasmine-core": "5.12.0",
3636
"karma": "6.4.4",
3737
"karma-chrome-launcher": "~3.2.0",
3838
"karma-coverage": "2.2.1",

package-lock.json

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

prototypes/process-explorer/oss-frontend/karma.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module.exports = function (config) {
3636
port: 9876,
3737
colors: true,
3838
logLevel: config.LOG_INFO,
39-
autoWatch: true,
39+
autoWatch: false,
4040
browsers: ['ChromeHeadlessNoSandbox'],
4141
customLaunchers: {
4242
ChromeHeadlessNoSandbox: {
@@ -45,6 +45,6 @@ module.exports = function (config) {
4545
}
4646
},
4747
singleRun: true,
48-
restartOnFileChange: true
48+
restartOnFileChange: false
4949
});
5050
};

prototypes/process-explorer/oss-frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"build:dev": "ng build --configuration development",
99
"watch": "ng build --watch --configuration development",
1010
"test": "ng test --watch=false",
11-
"test:dev": "ng test"
11+
"test:dev": "ng test --watch"
1212
},
1313
"private": true,
1414
"dependencies": {

0 commit comments

Comments
 (0)