Skip to content

Commit

Permalink
Fix rimraf usage in new test
Browse files Browse the repository at this point in the history
  • Loading branch information
DABH committed Jan 3, 2024
1 parent f3836aa commit 8f3c653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/winston/transports/02-file-archive.test.js
Expand Up @@ -22,7 +22,7 @@ const testLogFixturesPath = path.join(


function removeFixtures(done) {
rimraf(path.join(testLogFixturesPath, 'testarchive*'), done);
rimraf(path.join(testLogFixturesPath, 'testarchive*')).then(() => done());
}

describe('winston/transports/file/zippedArchive', function () {
Expand Down

0 comments on commit 8f3c653

Please sign in to comment.