mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
9 lines
276 B
JavaScript
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 });
|
|
};
|