refactor: rename Kopaya to Eryx

Rename the product, runtime surfaces, sidecar projects, docs, tests, and packaging outputs from Kopaya to Eryx across the repository.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
David Kaya
2026-03-23 22:01:23 +01:00
co-authored by Copilot
parent fd120b6f60
commit 50a8e5dfbe
50 changed files with 157 additions and 157 deletions
+6 -6
View File
@@ -6,27 +6,27 @@ describe('resolveWindowIconPath', () => {
test('uses the Windows ico asset from the platform-specific icon directory', () => {
expect(
resolveWindowIconPath({
appPath: 'C:\\workspace\\personal\\repositories\\kopaya',
appPath: 'C:\\workspace\\personal\\repositories\\eryx',
platform: 'win32',
}),
).toBe('C:\\workspace\\personal\\repositories\\kopaya\\assets\\icons\\windows\\icon.ico');
).toBe('C:\\workspace\\personal\\repositories\\eryx\\assets\\icons\\windows\\icon.ico');
});
test('uses the macOS icns asset on Darwin', () => {
expect(
resolveWindowIconPath({
appPath: '/Applications/Kopaya.app/Contents/Resources/app',
appPath: '/Applications/Eryx.app/Contents/Resources/app',
platform: 'darwin',
}),
).toBe('/Applications/Kopaya.app/Contents/Resources/app/assets/icons/macos/icon.icns');
).toBe('/Applications/Eryx.app/Contents/Resources/app/assets/icons/macos/icon.icns');
});
test('uses the Linux 512px PNG asset on Linux', () => {
expect(
resolveWindowIconPath({
appPath: '/opt/kopaya/resources/app',
appPath: '/opt/eryx/resources/app',
platform: 'linux',
}),
).toBe('/opt/kopaya/resources/app/assets/icons/linux/icons/512x512.png');
).toBe('/opt/eryx/resources/app/assets/icons/linux/icons/512x512.png');
});
});