e2e tests data

This commit is contained in:
SPRINX0\prochazka
2025-01-28 18:40:14 +01:00
parent 9e06944fe7
commit 07021ae760
21 changed files with 23919 additions and 6 deletions

View File

@@ -58,7 +58,9 @@ const jsldir = dirFunc('jsl', true);
const rundir = dirFunc('run', true);
const uploadsdir = dirFunc('uploads', true);
const pluginsdir = dirFunc('plugins');
const archivedir = dirFunc('archive', false, ['default']);
const archivedir = processArgs.runE2eTests
? dirFunc('archive-e2etests', true, ['default'])
: dirFunc('archive', false, ['default']);
const appdir = dirFunc('apps');
const filesdir = dirFunc('files');
const logsdir = dirFunc('logs', 3600 * 24 * 7);

View File

@@ -108,6 +108,7 @@
<div
class="wrapper"
class:selected={item.name == $visibleSelectedWidget}
data-testid={`WidgetIconPanel_${item.name}`}
on:click={() => handleChangeWidget(item.name)}
>
<FontIcon icon={item.icon} title={item.title} />
@@ -125,7 +126,7 @@
>
<FontIcon icon={$lockedDatabaseMode ? 'icon locked-database-mode' : 'icon unlocked-database-mode'} />
</div>
<div class="wrapper" on:click={handleSettingsMenu} bind:this={domSettings}>
<FontIcon icon="icon settings" />
</div>