1
0

Remove e2e folder

This commit is contained in:
2026-03-25 19:28:55 +01:00
parent dfe13b093d
commit 202b827d8b
18 changed files with 81 additions and 82 deletions

8
tests/global-setup.js Normal file
View File

@@ -0,0 +1,8 @@
const { setupFirmwareSymlink, cleanupFirmwareSymlink, hasFirmwareZip } = require('./helpers/assets');
module.exports = function globalSetup() {
if (hasFirmwareZip()) setupFirmwareSymlink();
// Return a teardown function (Playwright >= 1.30)
return () => cleanupFirmwareSymlink();
};