index.js 417 B

1234567891011121314151617
  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. define([
  6. 'tests/assets/tools',
  7. 'text!./config.json',
  8. 'text!./templates/selector.html',
  9. 'text!./templates/virtual.html'
  10. ], function (tools, config, selectorTmpl, virtualTmpl) {
  11. 'use strict';
  12. return tools.init(config, {
  13. bySelector: selectorTmpl,
  14. virtual: virtualTmpl
  15. });
  16. });