diff --git a/apps/server/src/models/demoProject.ts b/apps/server/src/models/demoProject.ts index 1a6e2ffda..df1457b26 100644 --- a/apps/server/src/models/demoProject.ts +++ b/apps/server/src/models/demoProject.ts @@ -538,8 +538,15 @@ export const demoDb: DatabaseModel = { urlPresets: [ { enabled: true, - alias: 'test', - pathAndParams: 'timer?timerType=clock', + alias: 'clock', + pathAndParams: + 'timer?showLeadingZeros=true&timerType=clock&hideClock=true&hideCards=true&hideProgress=true&hideMessage=true&hideSecondary=true&hideLogo=true', + }, + { + enabled: true, + alias: 'minimal', + pathAndParams: + 'timer?showLeadingZeros=true&hideClock=true&hideCards=true&hideProgress=true&hideMessage=true&hideSecondary=true&hideLogo=true', }, ], automation: { diff --git a/apps/server/test-db/db.json b/apps/server/test-db/db.json index 915403eaa..9dc56a557 100644 --- a/apps/server/test-db/db.json +++ b/apps/server/test-db/db.json @@ -488,7 +488,12 @@ { "enabled": true, "alias": "clock", - "pathAndParams": "timer?timerType=clock" + "pathAndParams": "timer?showLeadingZeros=true&timerType=clock&hideClock=true&hideCards=true&hideProgress=true&hideMessage=true&hideSecondary=true&hideLogo=true" + }, + { + "enabled": true, + "alias": "minimal", + "pathAndParams": "timer?showLeadingZeros=true&hideClock=true&hideCards=true&hideProgress=true&hideMessage=true&hideSecondary=true&hideLogo=true" } ], "automation": { diff --git a/e2e/tests/fixtures/e2e-test-db.json b/e2e/tests/fixtures/e2e-test-db.json index 533697add..8cc730fcf 100644 --- a/e2e/tests/fixtures/e2e-test-db.json +++ b/e2e/tests/fixtures/e2e-test-db.json @@ -505,7 +505,12 @@ { "enabled": true, "alias": "clock", - "pathAndParams": "timer?timerType=clock" + "pathAndParams": "timer?showLeadingZeros=true&timerType=clock&hideClock=true&hideCards=true&hideProgress=true&hideMessage=true&hideSecondary=true&hideLogo=true" + }, + { + "enabled": true, + "alias": "minimal", + "pathAndParams": "timer?showLeadingZeros=true&hideClock=true&hideCards=true&hideProgress=true&hideMessage=true&hideSecondary=true&hideLogo=true" } ], "automation": {