bender.js 729 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* jshint browser: false, node: true */
  2. 'use strict';
  3. var config = {
  4. applications: {
  5. ckeditor: {
  6. path: '../../',
  7. files: [
  8. 'ckeditor.js'
  9. ]
  10. },
  11. codemirror: {
  12. path: '.',
  13. files: [
  14. 'js/lib/codemirror/codemirror.js'
  15. ]
  16. },
  17. toolbartool: {
  18. path: '.',
  19. files: [
  20. 'js/fulltoolbareditor.js',
  21. 'js/abstracttoolbarmodifier.js',
  22. 'js/toolbarmodifier.js',
  23. 'js/toolbartextmodifier.js'
  24. ]
  25. }
  26. },
  27. plugins: [
  28. 'node_modules/benderjs-mocha',
  29. 'node_modules/benderjs-chai'
  30. ],
  31. framework: 'mocha',
  32. tests: {
  33. 'main': {
  34. applications: [ 'ckeditor', 'codemirror', 'toolbartool' ],
  35. basePath: 'tests/',
  36. paths: [
  37. '**',
  38. '!**/_*/**'
  39. ]
  40. }
  41. }
  42. };
  43. module.exports = config;