keepassxc-browser/tests/global-setup.js

10 lines
276 B
JavaScript
Raw Normal View History

const fs = require('@npmcli/fs');
2022-03-18 12:24:01 +00:00
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 });
2022-03-18 12:24:01 +00:00
};