Skip to content

Commit 2369220

Browse files
committed
--wip-- [skip ci]
1 parent 1940070 commit 2369220

3 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/store/chatStore.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import {
44
SanitisedBadgeSet,
55
SanitisiedEmoteSet,
66
sevenTvService,
7+
twitchBadgeService,
78
twitchEmoteService,
89
} from '@app/services';
910
import { logger } from '@app/utils/logger';

src/utils/chat/__tests__/extractEmotes.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ describe('extractEmotes', () => {
1616
const result = extractEmotes(emotes, message);
1717
expect(result).toEqual<SanitisiedEmoteSet[]>([
1818
{
19+
id: '1',
1920
name: 'Kapp',
2021
original_name: 'Kapp',
2122
creator: 'Unknown',
@@ -36,6 +37,7 @@ describe('extractEmotes', () => {
3637
const result = extractEmotes(emotes, message);
3738
expect(result).toEqual<SanitisiedEmoteSet[]>([
3839
{
40+
id: '1',
3941
name: 'Kappa',
4042
original_name: 'Kappa',
4143
creator: 'Unknown',

src/utils/chat/__tests__/findEmotesInText.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import {
66

77
describe('FindEmotesInText', () => {
88
const createMockEmote = (name: string): SanitisiedEmoteSet => ({
9+
id: '1',
910
name,
1011
emote_link: `https://example.com/${name}.png`,
1112
url: `https://example.com/${name}.png`,

0 commit comments

Comments
 (0)