Skip to content

Commit ed222bf

Browse files
committed
test(hgrid): increasing timeout and parallel again
1 parent 691b40d commit ed222bf

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

projects/igniteui-angular/karma.conf.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@
44
module.exports = function (config) {
55
config.set({
66
basePath: '',
7-
frameworks: [/*'parallel', */'jasmine', '@angular-devkit/build-angular'],
7+
frameworks: ['parallel', 'jasmine', '@angular-devkit/build-angular'],
88
files: [
99
{ pattern: '../../node_modules/hammerjs/hammer.min.js', watched: false },
1010
{ pattern: '../../node_modules/hammer-simulator/index.js', watched: false },
1111
{ pattern: './test.css', watched: false },
1212
{ pattern: '../../dist/igniteui-angular/styles/igniteui-angular.css', watched: false }
1313
],
1414
plugins: [
15-
//'karma-parallel',
15+
'karma-parallel',
1616
'karma-jasmine',
1717
'karma-coverage',
1818
'karma-chrome-launcher',
1919
'karma-spec-reporter',
2020
'@angular-devkit/build-angular/plugins/karma'
2121
],
22-
// parallelOptions: {
23-
// executors: 2,
24-
// shardStrategy: 'round-robin'
25-
// },
22+
parallelOptions: {
23+
executors: 2,
24+
shardStrategy: 'round-robin'
25+
},
2626
client: {
2727
//clearContext: false, // leave Jasmine Spec Runner output visible in browser
2828
jasmine: {

projects/igniteui-angular/src/lib/grids/hierarchical-grid/hierarchical-grid.navigation.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ describe('IgxHierarchicalGrid Navigation', () => {
317317
GridFunctions.focusCell(fixture, fCell);
318318

319319
UIInteractions.triggerEventHandlerKeyDown('arrowdown', baseHGridContent, false, false, false);
320-
await wait(DEBOUNCE_TIME);
320+
await wait(DEBOUNCE_TIME * 2);
321321
fixture.detectChanges();
322322

323323
const childFirstCell = childGrid.dataRowList.toArray()[0].cells.toArray()[0];

0 commit comments

Comments
 (0)