keepassxc-browser/tests/global-teardown.js
Stefan Sundin f62c1d6a1f
Update eslint rules, add .prettierignore file, fix some formatting, and fix some bugs (#1756)
Update eslint rules, add .prettierignore file, fix some formatting, and fix some bugs
2022-11-16 13:11:13 +02:00

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 });
};