fixed tests for local packer

This commit is contained in:
Dolan Miu
2016-07-04 19:01:30 +01:00
parent c4bdb5a3a7
commit c704db0653
3 changed files with 4 additions and 5 deletions

View File

@ -14,6 +14,6 @@ export class LocalPacker extends Packer {
pack(path: string): void {
this.stream = fs.createWriteStream(path);
super.pack(this.stream);
this.stream.close();
//this.stream.close();
}
}