refactor: rename app to aryx

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
David Kaya
2026-03-25 21:11:36 +01:00
co-authored by Copilot
parent cb7f216bc3
commit ab4e217d74
26 changed files with 81 additions and 81 deletions
+4 -4
View File
@@ -15,18 +15,18 @@ describe('resolveWindowIconPath', () => {
test('uses the macOS icns asset on Darwin', () => {
expect(
resolveWindowIconPath({
appPath: '/Applications/Eryx.app/Contents/Resources/app',
appPath: '/Applications/Aryx.app/Contents/Resources/app',
platform: 'darwin',
}),
).toBe('/Applications/Eryx.app/Contents/Resources/app/assets/icons/macos/icon.icns');
).toBe('/Applications/Aryx.app/Contents/Resources/app/assets/icons/macos/icon.icns');
});
test('uses the Linux 512px PNG asset on Linux', () => {
expect(
resolveWindowIconPath({
appPath: '/opt/eryx/resources/app',
appPath: '/opt/aryx/resources/app',
platform: 'linux',
}),
).toBe('/opt/eryx/resources/app/assets/icons/linux/icons/512x512.png');
).toBe('/opt/aryx/resources/app/assets/icons/linux/icons/512x512.png');
});
});