Skip to content

Commit 8374b56

Browse files
authored
refactor(tests): removing configureTestSuite() (#15616)
1 parent 27faabd commit 8374b56

File tree

176 files changed

+864
-1046
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

176 files changed

+864
-1046
lines changed

README.md

Lines changed: 3 additions & 0 deletions

angular.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,17 @@
191191
"zone.js/testing",
192192
"hammerjs"
193193
],
194+
"styles": [
195+
"src/styles/styles.scss"
196+
],
197+
"assets": [
198+
"projects/igniteui-angular/src/assets"
199+
],
200+
"stylePreprocessorOptions": {
201+
"includePaths": [
202+
"node_modules"
203+
]
204+
},
194205
"tsConfig": "projects/igniteui-angular/tsconfig.spec.json",
195206
"karmaConfig": "projects/igniteui-angular/karma.conf.js"
196207
}

package-lock.json

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

package.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,17 @@
5858
},
5959
"private": true,
6060
"dependencies": {
61-
"@angular/animations": "^19.2.3",
62-
"@angular/common": "^19.2.3",
63-
"@angular/compiler": "^19.2.3",
64-
"@angular/core": "^19.2.3",
65-
"@angular/elements": "^19.2.3",
66-
"@angular/forms": "^19.2.3",
67-
"@angular/platform-browser": "^19.2.3",
68-
"@angular/platform-browser-dynamic": "^19.2.3",
69-
"@angular/platform-server": "^19.2.3",
70-
"@angular/router": "^19.2.3",
71-
"@angular/ssr": "^19.2.4",
61+
"@angular/animations": "^19.2.5",
62+
"@angular/common": "^19.2.5",
63+
"@angular/compiler": "^19.2.5",
64+
"@angular/core": "^19.2.5",
65+
"@angular/elements": "^19.2.5",
66+
"@angular/forms": "^19.2.5",
67+
"@angular/platform-browser": "^19.2.5",
68+
"@angular/platform-browser-dynamic": "^19.2.5",
69+
"@angular/platform-server": "^19.2.5",
70+
"@angular/router": "^19.2.5",
71+
"@angular/ssr": "^19.2.6",
7272
"@igniteui/material-icons-extended": "^3.1.0",
7373
"@lit-labs/ssr-dom-shim": "^1.3.0",
7474
"@types/source-map": "0.5.2",
@@ -82,16 +82,16 @@
8282
"zone.js": "~0.15.0"
8383
},
8484
"devDependencies": {
85-
"@angular-devkit/build-angular": "^19.2.4",
86-
"@angular-devkit/schematics": "^19.2.4",
85+
"@angular-devkit/build-angular": "^19.2.6",
86+
"@angular-devkit/schematics": "^19.2.6",
8787
"@angular-eslint/builder": "^19.3.0",
8888
"@angular-eslint/eslint-plugin": "^19.3.0",
8989
"@angular-eslint/eslint-plugin-template": "^19.3.0",
9090
"@angular-eslint/schematics": "^19.3.0",
9191
"@angular-eslint/template-parser": "^19.3.0",
92-
"@angular/cli": "^19.2.4",
93-
"@angular/compiler-cli": "^19.2.3",
94-
"@angular/language-service": "^19.2.3",
92+
"@angular/cli": "^19.2.6",
93+
"@angular/compiler-cli": "^19.2.5",
94+
"@angular/language-service": "^19.2.5",
9595
"@angularclass/hmr": "^3.0.0",
9696
"@microsoft/signalr": "^7.0.12",
9797
"@types/estree": "^1.0.0",
@@ -131,11 +131,11 @@
131131
"karma-parallel": "^0.3.1",
132132
"karma-spec-reporter": "^0.0.36",
133133
"lit-html": "^3.2.1",
134-
"ng-packagr": "^19.2.0",
134+
"ng-packagr": "^19.2.1",
135135
"postcss": "^8.5.1",
136136
"postcss-scss": "^4.0.6",
137137
"prettier": "^3.3.3",
138-
"puppeteer": "^24.4.0",
138+
"puppeteer": "^24.5.0",
139139
"sass-embedded": "^1.83.4",
140140
"sass-true": "^8.1.0",
141141
"sassdoc": "^2.7.4",

projects/igniteui-angular/karma.conf.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ module.exports = function (config) {
1010
files: [
1111
{ pattern: '../../node_modules/hammerjs/hammer.min.js', watched: false },
1212
{ pattern: '../../node_modules/hammer-simulator/index.js', watched: false },
13-
{ pattern: './test.css', watched: false },
14-
{ pattern: '../../dist/igniteui-angular/styles/igniteui-angular.css', watched: false }
13+
{ pattern: './test.css', watched: false }
1514
],
1615
plugins: [
1716
'karma-parallel',

projects/igniteui-angular/karma.watch.conf.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ module.exports = function (config) {
88
files: [
99
{ pattern: '../../node_modules/hammerjs/hammer.min.js', watched: false },
1010
{ pattern: '../../node_modules/hammer-simulator/index.js', watched: false },
11-
{ pattern: './test.css', watched: false },
12-
{ pattern: '../../dist/igniteui-angular/styles/igniteui-angular.css', watched: false }
11+
{ pattern: './test.css', watched: false }
1312
],
1413
plugins: [
1514
'karma-jasmine',

0 commit comments

Comments
 (0)