From 98a55ab97201ef8eac8b5d02387bd8195b7be6a2 Mon Sep 17 00:00:00 2001 From: EugeniyKiyashko Date: Mon, 22 Jun 2026 16:42:16 +0400 Subject: [PATCH] CI: fix flacky wrapper tests --- .github/workflows/playgrounds_tests.yml | 2 +- packages/devextreme-angular/karma.conf.js | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/playgrounds_tests.yml b/.github/workflows/playgrounds_tests.yml index 8d1a8f93c039..d0e9941b4370 100644 --- a/.github/workflows/playgrounds_tests.yml +++ b/.github/workflows/playgrounds_tests.yml @@ -131,7 +131,7 @@ jobs: - name: Check sources compilation working-directory: ./apps/${{ matrix.ARGS.platform }} - run: pnpm exec nx build + run: pnpm exec nx build --excludeTaskDependencies # - name: Run test # if: ${{ matrix.ARGS.platform != 'angular' }} diff --git a/packages/devextreme-angular/karma.conf.js b/packages/devextreme-angular/karma.conf.js index 7d7e5e64fd3d..03c3175f5efc 100644 --- a/packages/devextreme-angular/karma.conf.js +++ b/packages/devextreme-angular/karma.conf.js @@ -76,5 +76,13 @@ module.exports = function (config) { singleRun: true, concurrency: Infinity, + + browserNoActivityTimeout: 120000, + + browserDisconnectTimeout: 10000, + + browserDisconnectTolerance: 2, + + captureTimeout: 120000, }); };