mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
8 lines
253 B
JavaScript
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);
|
|
};
|