keepassxc-browser/tests/global-teardown.js
2022-06-24 09:58:24 +03:00

8 lines
271 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 });
};