18 lines
417 B
JavaScript
Executable File
18 lines
417 B
JavaScript
Executable File
/**
|
|
* 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
|
|
});
|
|
});
|