1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-10 21:54:19 +00:00

chore: preparation for merge into main branch

This commit is contained in:
Elias Schneider
2025-12-30 16:27:48 +01:00
parent 078152d4db
commit e60b80632f
14 changed files with 42 additions and 14 deletions

View File

@@ -126,7 +126,9 @@ test.describe('Update application images', () => {
await page.getByLabel('Light Mode Logo').setInputFiles('resources/images/pingvin-share-logo.png');
await page.getByLabel('Dark Mode Logo').setInputFiles('resources/images/cloud-logo.png');
await page.getByLabel('Email Logo').setInputFiles('resources/images/pingvin-share-logo.png');
await page.getByLabel('Default Profile Picture').setInputFiles('resources/images/pingvin-share-logo.png');
await page
.getByLabel('Default Profile Picture')
.setInputFiles('resources/images/pingvin-share-logo.png');
await page.getByLabel('Background Image').setInputFiles('resources/images/clouds.jpg');
await page.getByRole('button', { name: 'Save' }).last().click();

View File

@@ -287,7 +287,6 @@ function runExportToStdout(): Buffer {
'--path',
'-'
]);
fs.writeFileSync('export-stdout.txt', res);
return res;
}