1
0

karma.conf.js 554 B

12345678910111213141516171819
  1. module.exports = function (config) {
  2. config.set({
  3. browsers: ['Chrome'],
  4. // The directory where the output file lives
  5. basePath: 'static/rtc-e2e-test',
  6. // The file itself
  7. files: ['main.js'],
  8. frameworks: ['cljs-test'],
  9. plugins: ['karma-cljs-test', 'karma-chrome-launcher'],
  10. colors: true,
  11. logLevel: config.LOG_INFO,
  12. client: {
  13. args: ["shadow.test.karma.init"],
  14. singleRun: true,
  15. testvar: config.testvar,
  16. seed: config.seed
  17. }
  18. })
  19. };