diff --git a/test/app/logging_test.js b/test/app/logging_test.js index 82f6cd723..bfdf20fac 100644 --- a/test/app/logging_test.js +++ b/test/app/logging_test.js @@ -28,7 +28,12 @@ describe('app/logging', () => { afterEach(done => { // we need the unsafe option to recursively remove the directory - tmpDir.removeCallback(done); + try { + tmpDir.removeCallback(done); + } catch (e) { + // eslint-disable-next-line no-console + console.error('removeCallback failed with ', e); + } }); describe('#isLineAfterDate', () => {