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

9 lines
275 B
JavaScript

const fs = require('@npmcli/fs')
const DEST = 'keepassxc-browser/tests';
module.exports = async config => {
// Create a temporary directory and copy tests/* to keepassxc-browser/tests
await fs.exists(DEST);
await fs.cp('./tests', DEST, { recursive: true });
};