我正在尝试通过解决 ES6 Katas 来学习 ES6。
但是,我被困在以它开头的下面一行('表达式没有传递给它'......)。我不允许更改断言行。我找不到将“两个”连接到返回的字符串数组的方法。
这可能是一个非常简单的问题,但我将不胜感激。
提前致谢。
describe('the 1st parameter - receives only the pure strings of the template string', function() {
function tagFunction(strings) {
return strings;
}
it('the strings are an array', function() {
var result = ['template string'];
assert.deepEqual(tagFunction`template string`, result);
});
it('expressions are NOT passed to it', function() {
var tagged = tagFunction`one`;
assert.deepEqual(tagged, ['one', 'two']);
});
});