mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
8 lines
272 B
JavaScript
8 lines
272 B
JavaScript
const fs = require('@npmcli/fs');
|
|
|
|
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.rm(DEST, { recursive: true });
|
|
};
|