Module cleanup and tests
CI / ci (push) Failing after 7s

This commit is contained in:
2026-05-24 23:13:45 +02:00
parent 63d83e999a
commit 5dc9b3b8d4
72 changed files with 2545 additions and 1220 deletions
@@ -35,10 +35,10 @@ function makeAdapter({
localize: vi.fn((key, data) => {
// Simple mock that returns the key with data substituted
const messages = {
'video-view-manager.notifications.personalHidden': 'GM has hidden your camera. Your portrait is shown to other Participants.',
'video-view-manager.notifications.personalShowed': 'Your camera is now visible to the table.',
'video-view-manager.notifications.gmHid': 'GM hid {name}\'s camera',
'video-view-manager.notifications.gmShowed': 'GM showed {name}\'s camera',
'scrying-pool.notifications.personalHidden': 'GM has hidden your camera. Your portrait is shown to other Participants.',
'scrying-pool.notifications.personalShowed': 'Your camera is now visible to the table.',
'scrying-pool.notifications.gmHid': 'GM hid {name}\'s camera',
'scrying-pool.notifications.gmShowed': 'GM showed {name}\'s camera',
};
let msg = messages[key] ?? key;
if (data?.name) {