Skip to content

Commit 0132b1d

Browse files
committed
Failing test for new functionality
1 parent cc3b58e commit 0132b1d

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

test/comment.js

+30
Original file line numberDiff line numberDiff line change
@@ -139,3 +139,33 @@ tap.test('non-string types', function (assert) {
139139
t.end();
140140
});
141141
});
142+
143+
tap.test('multiline string', function (assert) {
144+
assert.plan(1);
145+
146+
var verify = function (output) {
147+
assert.equal(output.toString('utf8'), [
148+
'TAP version 13',
149+
'# multiline strings',
150+
'# a',
151+
'# b',
152+
'',
153+
'1..0',
154+
'# tests 0',
155+
'# pass 0',
156+
'',
157+
'# ok',
158+
''
159+
].join('\n'));
160+
};
161+
162+
var test = tape.createHarness();
163+
test.createStream().pipe(concat(verify));
164+
test('multiline strings', function (t) {
165+
t.comment([
166+
'a',
167+
'b',
168+
].join('\n'));
169+
t.end();
170+
});
171+
});

0 commit comments

Comments
 (0)