Skip to content

Commit

Permalink
fix: Add debug statement for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
q2s2t committed Oct 27, 2019
1 parent 708a5fd commit ddfc4b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/func/advanced.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ describe('Functional: Advanced usage', function () {
expect(sevenWindows._args).to.includes('-ssc')
})

it('should be able to compress from stdin', function (done) {
it.only('should be able to compress from stdin', function (done) {
const source = `${mockDir}/DirImages/architectural-design-architecture-blueprint-239886.jpg`
const archive = `${tmpDir}/advanced-stdin.7z`
const stdin = require('fs').createReadStream(source)
Expand All @@ -52,6 +52,7 @@ describe('Functional: Advanced usage', function () {
})
stdin.pipe(seven._childProcess.stdin)
seven.on('end', function () {
console.log(seven.info)
expect(seven.info.get('Items to compress')).to.eql('1')
done()
})
Expand Down

0 comments on commit ddfc4b9

Please sign in to comment.