Configuration.js 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. // Put this file in the parent directory of the runner folder. Also rename the file to Configuration.js
  2. (function(context){
  3. var Configuration = context.Configuration = {};
  4. // Runner name
  5. Configuration.name = 'Hue';
  6. // Presets - combine the sets and the source to a preset to easily run a test
  7. Configuration.presets = {
  8. 'PartialUpdate': {
  9. sets: ['PartialUpdate'],
  10. source: ['PartialUpdate']
  11. }
  12. };
  13. // An object with default presets
  14. Configuration.defaultPresets = {
  15. browser: 'PartialUpdate',
  16. nodejs: 'PartialUpdate',
  17. jstd: 'PartialUpdate'
  18. };
  19. /*
  20. * An object with sets. Each item in the object should have an path key', '
  21. * that specifies where the spec files are and an array with all the files
  22. * without the .js extension relative to the given path
  23. */
  24. Configuration.sets = {
  25. 'PartialUpdate': {
  26. path: 'hue/',
  27. files: ['PartialUpdate']
  28. }
  29. };
  30. /*
  31. * An object with the source files. Each item should have an path key,
  32. * that specifies where the source files are and an array with all the files
  33. * without the .js extension relative to the given path
  34. */
  35. Configuration.source = {
  36. 'PartialUpdate': {
  37. path: '../',
  38. files: [
  39. 'clientcide/Source/Core/dbug',
  40. 'core/Source/Core/Core',
  41. 'core/Source/Native/Array',
  42. 'core/Source/Native/String',
  43. 'core/Source/Native/Function',
  44. 'core/Source/Native/Number',
  45. 'core/Source/Native/Hash',
  46. 'core/Source/Class/Class',
  47. 'core/Source/Class/Class.Extras',
  48. 'core/Source/Core/Browser',
  49. 'core/Source/Element/Element',
  50. 'core/Source/Element/Element.Dimensions',
  51. 'core/Source/Utilities/Selectors',
  52. 'more/Source/Core/More',
  53. 'more/Source/Element/Elements.From',
  54. 'more/Source/Native/Array.Extras',
  55. '../../../desktop/core/static/js/Source/JFrameRenderers/PartialUpdate'
  56. ]
  57. }
  58. };
  59. })(typeof exports != 'undefined' ? exports : this);