1234567891011121314151617 |
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- define([
- 'tests/assets/tools',
- 'text!./config.json',
- 'text!./templates/selector.html',
- 'text!./templates/virtual.html'
- ], function (tools, config, selectorTmpl, virtualTmpl) {
- 'use strict';
- return tools.init(config, {
- bySelector: selectorTmpl,
- virtual: virtualTmpl
- });
- });
|