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.

19 lines
418 B

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