23 lines
451 B
JavaScript
Executable File
23 lines
451 B
JavaScript
Executable File
/**
|
|
* Copyright © Magento, Inc. All rights reserved.
|
|
* See COPYING.txt for license details.
|
|
*/
|
|
define([
|
|
'tests/assets/tools',
|
|
'tests/assets/apply/components/fn',
|
|
'text!./config.json',
|
|
'text!./templates/node.html'
|
|
], function (tools, fnComponent, config, nodeTmpl) {
|
|
'use strict';
|
|
|
|
var preset;
|
|
|
|
preset = tools.init(config, {
|
|
'fn': nodeTmpl
|
|
});
|
|
|
|
preset.fn.component = fnComponent;
|
|
|
|
return preset;
|
|
});
|