Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Pipe - cleaned up and merged with master #92

Merged
merged 17 commits into from
Apr 2, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixed wrong fixture file names
  • Loading branch information
dotnetCarpenter committed Mar 13, 2018
commit 9445f727ef53c176aaa274426134f79cf3dea16e
4 changes: 2 additions & 2 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe("Codecov", function(){

it("can auto detect reports", function(){
var res = codecov.upload({options: {dump: true}});
expect(res.files[0].split(pathSeparator).pop()).to.eql('coverage.json');
expect(res.files[0].split(pathSeparator).pop()).to.eql('example.coverage.txt');
expect(res.body).to.contain('this file is intentionally left blank');
});

Expand All @@ -57,7 +57,7 @@ describe("Codecov", function(){
it("can detect .bowerrc without directory", function(){
fs.writeFileSync('.bowerrc', '{"key": "value"}');
var res = codecov.upload({options: {dump: true}});
expect(res.files[0].split(pathSeparator).pop()).to.eql('coverage.json');
expect(res.files[0].split(pathSeparator).pop()).to.eql('example.coverage.txt');
expect(res.body).to.contain('this file is intentionally left blank');
});

Expand Down