Creates a fake notification capability.
const notifications = createFakeNotifications();notifications._respondWith(1); // "click" the second actionconst choice = await notifications.show('info', 'Changed', {}, [ { title: 'Reload' }, { title: 'Ignore' },]);expect(choice).toBe(1); Copy
const notifications = createFakeNotifications();notifications._respondWith(1); // "click" the second actionconst choice = await notifications.show('info', 'Changed', {}, [ { title: 'Reload' }, { title: 'Ignore' },]);expect(choice).toBe(1);
Creates a fake notification capability.