Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configurator/e2e/configurator.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ test.describe('Platform switching', () => {
await page.locator('#platform-select').selectOption('synology');
await expect(page.locator('#vol-roon')).toHaveValue('/volume1/docker/roon');
await expect(page.locator('#vol-music')).toHaveValue('/volume1/music');
await expect(page.locator('#vol-backup')).toHaveValue('/volume1/roon-backups');
await expect(page.locator('#vol-backup')).toHaveValue('/volume1/docker/roon-backups');
expect(await getOutput(page)).toContain('- /volume1/music:/Music');
});
});
Expand Down
2 changes: 1 addition & 1 deletion configurator/public/platforms/synology.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"label": "Synology",
"roon": "/volume1/docker/roon",
"music": "/volume1/music",
"backup": "/volume1/roon-backups",
"backup": "/volume1/docker/roon-backups",
"prefix": "/volume1/",
"hint": "Paths set for Synology DSM. Adjust volume1 if needed.",
"rootPattern": "^/volume\\d+/"
Expand Down
4 changes: 2 additions & 2 deletions configurator/src/urlState.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const platforms: PlatformMap = {
id: 'synology', label: 'Synology',
roon: '/volume1/docker/roon',
music: '/volume1/music',
backup: '/volume1/roon-backups',
backup: '/volume1/docker/roon-backups',
prefix: '/volume1/',
hint: '',
rootPattern: '^/volume\\d+/',
Expand Down Expand Up @@ -66,7 +66,7 @@ describe('encode', () => {
const cfg = baseConfig({
volRoon: '/volume1/docker/roon',
volMusic: '/volume1/music',
volBackup: '/volume1/roon-backups',
volBackup: '/volume1/docker/roon-backups',
});
const params = encode(cfg, 'synology', platforms, 'qnap');
expect(params.get('p')).toBe('synology');
Expand Down
Loading