All tests passing but then sitting there until timing out in Karma tests

Hi,
I have configure Karma test jobs when i execute job am getting timed error can any one guide me to resolve this issue.below is my config file is there anything wrong?

Karma config file:
Karma test:
docker:
- image: circleci/openjdk:8-jdk
docker:
- image: circleci/node:8

    working_directory: ~/Project
    environment:
          CHROME_BIN: "/usr/bin/google-chrome"

    steps:
      - checkout
      - run:
          name: Install dependencies
          command: npm install
          
      - save_cache:
          key: Project-{{ checksum "package.json" }}
          paths:
            - ./node_modules 
     
      - run:
           name: Run unit tests with karma
           command: npm test
      - store_test_results:
           path: test-results.xml

Karma Error log:

 92% after chunk asset optimization SourceMapDevToolPlugin resolve sources 92% after chunk asset optimization SourceMapDevToolPlugin main.js attach SourceMap 92% after chunk asset optimization SourceMapDevToolPlugin polyfills.js attach SourceMap    92% after chunk asset optimization SourceMapDevToolPlugin vendor.js attach SourceMap                            92% after chunk asset optimization SourceMapDevToolPlugin                                    93% asset optimization 93% after asset optimization               94% after seal   95% emitting 95% emitting CopyPlugin                        28 06 2018 05:44:05.429:WARN [karma]: No captured browser, open http://localhost:9876/
28 06 2018 05:44:56.989:WARN [launcher]: Chrome have not captured in 60000 ms, killing.
28 06 2018 05:44:58.992:WARN [launcher]: Chrome was not killed in 2000 ms, sending SIGKILL.
28 06 2018 05:45:00.993:WARN [launcher]: Chrome was not killed by SIGKILL in 2000 ms, continuing.
Too long with no output (exceeded 10m0s)

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.