Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Was facing the same issue and I solved it by editing the <strong>karma.conf.js</strong> and <strong>karma-e2e.conf.js</strong> files which is under <strong>config</strong> directory.<br></p> <p>Change:</p> <pre><code>browsers = ['Chrome']; </code></pre> <p><strong>TO</strong><br></p> <pre><code>browsers = ['Your_System_Path_where_chrome_installed/chrome.exe']; </code></pre> <p>in my case it was > <code>C:/Program Files (x86)/Google/Chrome/Application/chrome.exe</code></p> <p>and then add <code>C:\Program Files (x86)\Google\Chrome\Application\chrome.exe</code> path to environment variables</p> <hr> <p><strong>or in cmd</strong></p> <pre><code>SET CHROME_BIN = "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" </code></pre> <hr> <p><strong>Additional</strong>: Settings for other browsers can be seen <a href="https://github.com/karma-runner/karma/blob/master/docs/config/03-browsers.md">here</a>.</p> <p>And about why chrome one is not working I guess they(Karma) have configured their chrome path from some earlier versions of chrome.</p> <hr> <p><strong>Update:</strong> For <a href="http://docs.angularjs.org/tutorial">AngularJS tutorial</a> Followers:</p> <ul> <li>You still might face problems (<em>as I faced</em>) while running karma test runner on some tutorial steps and to resolve this: just add these "Angular Scenario Dependencies" in both the "<strong>...conf.js</strong>" files, like this:</li> </ul> <blockquote> <pre><code>files = [ ANGULAR_SCENARIO, ANGULAR_SCENARIO_ADAPTER, .... .... // keep rest of the lines as it is .... ]; </code></pre> </blockquote>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload