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

Prettier #101

Merged
merged 4 commits into from
Jul 8, 2018
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
Update test
  • Loading branch information
Ed Moore committed Jul 6, 2018
commit abc5cfabbf06c9ea223238beff77fb426fd33c12
4 changes: 3 additions & 1 deletion test/upload.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ describe('Codecov', function() {

it('can remove files after uploading', function(done) {
fs.writeFileSync('report.tmp', '<content>')
expect(fs.exists('report.tmp')).to.be.true
fs.exists('report.tmp', function(exists) {
expect(exists).to.be.true
})

var self = this
codecov.sendToCodecovV2(
Expand Down