drop errors when not being able to delete the tmpDir

pull/1290/head
Audric Ackermann 5 years ago
parent bbd16dbb54
commit 9354c53490
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -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', () => {

Loading…
Cancel
Save