mirror of
https://github.com/davidkaya/aryx.git
synced 2026-08-07 04:08:45 +02:00
refactor: rename app to aryx
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -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');
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user