keepassxc-browser/tests/global-teardown.js
2022-03-18 14:24:01 +02:00

8 lines
253 B
JavaScript

const fs = require('fs-extra');
const DEST = 'keepassxc-browser/tests';
module.exports = async config => {
// Delete previously created temporary directory. Comment for re-running tests manually inside the extension.
await fs.remove(DEST);
};