Setting environment variable for CHROME_BIN does not work

后端 未结 8 1457
小鲜肉
小鲜肉 2020-12-30 22:47

I\'m trying to use Karma for testing my js scripts. In the doc it says I should set the environment variable for CHROME_BIN:

I\'ve set it to

8条回答
  •  耶瑟儿~
    2020-12-30 23:23

    For Chromium in ubuntu 14.04 edit test/karma.conf.js and change

    browsers = ['Chrome'];
    

    for

    browsers = ['chromium-browser'];
    

提交回复
热议问题