diff --git a/.github/workflows/storybook.yaml b/.github/workflows/storybook.yaml index 1b11c0c67..c3d8964f3 100644 --- a/.github/workflows/storybook.yaml +++ b/.github/workflows/storybook.yaml @@ -51,7 +51,6 @@ jobs: npx build-storybook -o dist -s ./public - name: Deploy - echo "name is $(env.BRANCH_NAME)" if: ${{ env.BRANCH_NAME == 'maintenance-3.0.x' }} env: GH_TOKEN: ${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} diff --git a/karma.conf.js b/karma.conf.js index 2b79b4629..d9afcccb1 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -54,7 +54,7 @@ module.exports = (config) => { basePath: '', singleRun: true, browsers: config.browsers && config.browsers.length > 0 ? config.browsers : Object.keys(customLaunchers), - browserDisconnectTimeout: 10 * 1000, + browserDisconnectTimeout: 10 * 10 * 1000, browserDisconnectTolerance: 1, browserNoActivityTimeout: 5 * 60 * 1000, captureTimeout: 120000, @@ -125,7 +125,7 @@ module.exports = (config) => { mocha: { reporter: 'html', ui: 'tdd', - timeout: 3000, + timeout: 30000, }, chai: { includeStack: true,