Skip to content

Commit 7f25696

Browse files
nrobakovaddincheva
andauthored
Update for failing tests with Ivy false - 9.1 (#7474)
chore(*): change Ivy true to azure add fakeAsync to tests beforeEach Add missed comma include fakeAsync in mrl tests update failing tests update same of failing tests update treeGrid tests update hierarchical grid integration tests remove done from grid tests update for lint update hGrid tests update hierarchical grid tests update failing hierarchical grid tests add fakeAsync because of the height/width setter rAF make the test fakeAsync add fakeAsync to the hGrid row drag tests update grid component tests remove missed f update silently failing test add some logs in the cofigure test suite update row drag test revert changes to the configureTestSuite extend DEFAULT_TIMEOUT_INTERVAL update MRL tests Update tests failing with Ivy false add missed comma revert changes to the configureTestSuite update configureTestSuite add missed fakeAsync update test to be fakeAsync when change the grid width add clear styles in configureTestSuite add to all tests Ivy false extend the spec reporter configuration add no-sandbox flas to the karma configs set option failFast to false update MRL test remove comments revert changes to the tsconfig update karma config set failFast to false updare configureTestSuite update treeGrid flickering tests Co-authored-by: ddincheva <[email protected]>
1 parent e1aa670 commit 7f25696

Some content is hidden

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

48 files changed

+1242
-1117
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module.exports = function (config) {
3535
},
3636
reporters: ['junit'],
3737
junitReporter: {
38-
outputDir: ''
38+
outputDir: ''
3939
},
4040
port: 9876,
4141
colors: true,

projects/igniteui-angular/karma.azure.grid.conf.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,14 @@ module.exports = function (config) {
4242
colors: true,
4343
logLevel: config.LOG_INFO,
4444
autoWatch: true,
45-
browsers: ['ChromeHeadless'],
45+
browsers: ['ChromeHeadlessNoSandbox'],
46+
customLaunchers: {
47+
ChromeHeadlessNoSandbox: {
48+
base: 'ChromeHeadless',
49+
flags: ['--no-sandbox', '--disable-gpu'],
50+
debug: false
51+
}
52+
},
4653
singleRun: true
4754
});
4855
};

projects/igniteui-angular/karma.azure.hierarchical-grid.conf.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,14 @@ module.exports = function (config) {
4141
colors: true,
4242
logLevel: config.LOG_INFO,
4343
autoWatch: true,
44-
browsers: ['ChromeHeadless'],
44+
browsers: ['ChromeHeadlessNoSandbox'],
45+
customLaunchers: {
46+
ChromeHeadlessNoSandbox: {
47+
base: 'ChromeHeadless',
48+
flags: ['--no-sandbox', '--disable-gpu'],
49+
debug: false
50+
}
51+
},
4552
singleRun: true
4653
});
4754
};

projects/igniteui-angular/karma.azure.non-grid.conf.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,14 @@ module.exports = function (config) {
4141
colors: true,
4242
logLevel: config.LOG_INFO,
4343
autoWatch: true,
44-
browsers: ['ChromeHeadless'],
44+
browsers: ['ChromeHeadlessNoSandbox'],
45+
customLaunchers: {
46+
ChromeHeadlessNoSandbox: {
47+
base: 'ChromeHeadless',
48+
flags: ['--no-sandbox', '--disable-gpu'],
49+
debug: false
50+
}
51+
},
4552
singleRun: true
4653
});
4754
};

projects/igniteui-angular/karma.azure.tree-grid.conf.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,14 @@ module.exports = function (config) {
4141
colors: true,
4242
logLevel: config.LOG_INFO,
4343
autoWatch: true,
44-
browsers: ['ChromeHeadless'],
44+
browsers: ['ChromeHeadlessNoSandbox'],
45+
customLaunchers: {
46+
ChromeHeadlessNoSandbox: {
47+
base: 'ChromeHeadless',
48+
flags: ['--no-sandbox', '--disable-gpu'],
49+
debug: false
50+
}
51+
},
4552
singleRun: true
4653
});
4754
};

projects/igniteui-angular/karma.conf.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,12 @@ module.exports = function (config) {
3535
},
3636
reporters: ['spec'],
3737
specReporter: {
38-
suppressSkipped: true
38+
suppressSkipped: true,
39+
suppressErrorSummary: false,
40+
suppressFailed: false,
41+
suppressPassed: false,
42+
showSpecTiming: false,
43+
failFast: false
3944
},
4045
port: 9876,
4146
colors: true,

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

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,25 @@ module.exports = function (config) {
3636
},
3737
reporters: ['spec'],
3838
specReporter: {
39-
suppressSkipped: true
39+
suppressSkipped: true,
40+
suppressErrorSummary: false,
41+
suppressFailed: false,
42+
suppressPassed: false,
43+
showSpecTiming: false,
44+
failFast: false
4045
},
4146
port: 9876,
4247
colors: true,
4348
logLevel: config.LOG_INFO,
4449
autoWatch: true,
45-
browsers: ['ChromeHeadless'],
50+
browsers: ['ChromeHeadlessNoSandbox'],
51+
customLaunchers: {
52+
ChromeHeadlessNoSandbox: {
53+
base: 'ChromeHeadless',
54+
flags: ['--no-sandbox', '--disable-gpu'],
55+
debug: false
56+
}
57+
},
4658
singleRun: false
4759
});
4860
};

projects/igniteui-angular/karma.hierarchical-grid.conf.js

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,25 @@ module.exports = function (config) {
3535
},
3636
reporters: ['spec'],
3737
specReporter: {
38-
suppressSkipped: true
38+
suppressSkipped: true,
39+
suppressErrorSummary: false,
40+
suppressFailed: false,
41+
suppressPassed: false,
42+
showSpecTiming: false,
43+
failFast: false
3944
},
4045
port: 9876,
4146
colors: true,
4247
logLevel: config.LOG_INFO,
4348
autoWatch: true,
44-
browsers: ['ChromeHeadless'],
49+
browsers: ['ChromeHeadlessNoSandbox'],
50+
customLaunchers: {
51+
ChromeHeadlessNoSandbox: {
52+
base: 'ChromeHeadless',
53+
flags: ['--no-sandbox', '--disable-gpu'],
54+
debug: false
55+
}
56+
},
4557
singleRun: false
4658
});
4759
};

projects/igniteui-angular/karma.non-grid.conf.js

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,25 @@ module.exports = function (config) {
3535
},
3636
reporters: ['spec'],
3737
specReporter: {
38-
suppressSkipped: true
38+
suppressSkipped: true,
39+
suppressErrorSummary: false,
40+
suppressFailed: false,
41+
suppressPassed: false,
42+
showSpecTiming: false,
43+
failFast: false
3944
},
4045
port: 9876,
4146
colors: true,
4247
logLevel: config.LOG_INFO,
4348
autoWatch: true,
44-
browsers: ['ChromeHeadless'],
49+
browsers: ['ChromeHeadlessNoSandbox'],
50+
customLaunchers: {
51+
ChromeHeadlessNoSandbox: {
52+
base: 'ChromeHeadless',
53+
flags: ['--no-sandbox', '--disable-gpu'],
54+
debug: false
55+
}
56+
},
4557
singleRun: false
4658
});
4759
};

projects/igniteui-angular/karma.test-perf.conf.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,12 @@ module.exports = function (config) {
2929
},
3030
reporters: ['spec'],
3131
specReporter: {
32-
suppressSkipped: true
32+
suppressSkipped: true,
33+
suppressErrorSummary: false,
34+
suppressFailed: false,
35+
suppressPassed: false,
36+
showSpecTiming: false,
37+
failFast: false
3338
},
3439
port: 9876,
3540
colors: true,

0 commit comments

Comments
 (0)