We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc3b58e commit 0132b1dCopy full SHA for 0132b1d
test/comment.js
@@ -139,3 +139,33 @@ tap.test('non-string types', function (assert) {
139
t.end();
140
});
141
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
169
+ t.end();
170
+ });
171
+});
0 commit comments