index.js 451 B

12345678910111213141516171819202122
  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. define([
  6. 'tests/assets/tools',
  7. 'tests/assets/apply/components/fn',
  8. 'text!./config.json',
  9. 'text!./templates/node.html'
  10. ], function (tools, fnComponent, config, nodeTmpl) {
  11. 'use strict';
  12. var preset;
  13. preset = tools.init(config, {
  14. 'fn': nodeTmpl
  15. });
  16. preset.fn.component = fnComponent;
  17. return preset;
  18. });