not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
330 B

  1. // Karma configuration for all the tests
  2. sharedConfig = require("./karma-shared.conf.js");
  3. module.exports = function (config) {
  4. var testFiles = [
  5. {
  6. pattern: 'test/**/*Spec.js',
  7. included: false
  8. }
  9. ];
  10. sharedConfig(config);
  11. config.files = config.files.concat(testFiles);
  12. };