Skip to content

Commit f0e055f

Browse files
authored
Merge pull request #43 from jmeis/master
Removing dist/ from .npmignore [semver minor]
2 parents 50e63d1 + 3bee578 commit f0e055f

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

.npmignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
dist/
21
doc/
32
examples/
43
jsdoc/

test/format-stream-spec.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ describe('FormatStream', function() {
2020

2121
it('should format objects', function(done) {
2222
var stream = new FormatStream({ objectMode: true });
23-
//stream.setEncoding('utf8');
23+
// stream.setEncoding('utf8');
2424
var source = {
2525
results: [
2626
{
@@ -50,8 +50,6 @@ describe('FormatStream', function() {
5050
]
5151
};
5252
stream.on('data', function(actual) {
53-
console.log(JSON.stringify(actual, null, 2))
54-
console.log(JSON.stringify(expected, null, 2))
5553
assert.deepEqual(actual, expected);
5654
done();
5755
});

0 commit comments

Comments
 (0)