Move bench-folder in tests-folder

First part of reorganizing and cleaning up test-folders.
This commit is contained in:
Jakob Linskeseder
2021-12-22 20:46:12 +01:00
committed by Jay Linski
parent c295ef085f
commit 3bd0fa8b32
28 changed files with 16 additions and 33 deletions
+16
View File
@@ -0,0 +1,16 @@
module.exports = {
context: {
names: [
{ bat: 'foo', name: ['Moe'] },
{ bat: 'foo', name: ['Larry'] },
{ bat: 'foo', name: ['Curly'] },
{ bat: 'foo', name: ['Shemp'] }
],
foo: 'bar'
},
handlebars:
'{{#each names}}{{#each name}}{{../bat}}{{../../foo}}{{/each}}{{/each}}',
mustache: '{{#names}}{{#name}}{{bat}}{{foo}}{{/name}}{{/names}}',
eco:
'<% for item in @names: %><% for child in item.name: %><%= item.bat %><%= @foo %><% end %><% end %>'
};