Skip to content
This repository has been archived by the owner on Aug 19, 2019. It is now read-only.

Commit

Permalink
Show output
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffi committed Mar 17, 2016
1 parent ae393e5 commit 48bf421
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ test.cb('does build a c# solution file', t => {
contents: fs.readFileSync(filePath)
});

var stream = msbuild();
var stream = msbuild({ stdout: true });
stream.once('end', function () {
t.true(fs.existsSync(expectedFile));
t.end()
Expand All @@ -35,7 +35,7 @@ test.cb('does build a c# solution file', t => {
});

test.cb('does not build a non existing solution file', t => {
var stream = msbuild();
var stream = msbuild({ stdout: true });
stream.on('data', function() {});
stream.on('end', function() { t.end(); });
stream.write(new gutil.File({ path: null, contents: null }));
Expand Down
2 changes: 1 addition & 1 deletion test/msbuild-runner.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import test from 'ava';
import msbuildRunner from '../lib/msbuild-runner';

test('', t => {
test.skip('TODO', t => {
});

0 comments on commit 48bf421

Please sign in to comment.