keepassxc-browser/tests/global-setup.js
2022-03-18 14:24:01 +02:00

9 lines
258 B
JavaScript

const fs = require('fs-extra');
const DEST = 'keepassxc-browser/tests';
module.exports = async config => {
// Create a temporary directory and copy tests/* to keepassxc-browser/tests
await fs.ensureDir(DEST);
await fs.copy('./tests', DEST);
};