keepassxc-browser/tests/global-setup.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

9 lines
276 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 });
};