SunriseSunset: Use 👻 not 🥷 for missing streak
This commit is contained in:
parent
f083bb1ad2
commit
6a695a8c68
2 changed files with 3 additions and 3 deletions
|
|
@ -12,7 +12,7 @@ export class SunriseSunsetDayGuess {
|
||||||
case GuessType.incorrect:
|
case GuessType.incorrect:
|
||||||
return '💔';
|
return '💔';
|
||||||
case GuessType.missing:
|
case GuessType.missing:
|
||||||
return '🥷';
|
return '👻';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -154,7 +154,7 @@ describe('SunriseSunsetStreakCalculator', () => {
|
||||||
const emojiVisualisation = streakCalculator.getEmojiForHistory(correctDays, incorrect);
|
const emojiVisualisation = streakCalculator.getEmojiForHistory(correctDays, incorrect);
|
||||||
|
|
||||||
// THEN
|
// THEN
|
||||||
expect(emojiVisualisation).toBe('💔🎉🎉🥷💔');
|
expect(emojiVisualisation).toBe('💔🎉🎉👻💔');
|
||||||
});
|
});
|
||||||
|
|
||||||
it(`should get a fully shareable streak when all things are empty`, () => {
|
it(`should get a fully shareable streak when all things are empty`, () => {
|
||||||
|
|
@ -183,7 +183,7 @@ describe('SunriseSunsetStreakCalculator', () => {
|
||||||
const shareableStatement = calculator.getShareableStatement(correctDays, incorrectDays, today);
|
const shareableStatement = calculator.getShareableStatement(correctDays, incorrectDays, today);
|
||||||
|
|
||||||
// THEN
|
// THEN
|
||||||
const expected = `Sunrise, Sunset?\n2023-01-31\n🎉🥷🥷💔🎉🎉\nCurrent Streak: 1\nLongest Streak: 2`;
|
const expected = `Sunrise, Sunset?\n2023-01-31\n🎉👻👻💔🎉🎉\nCurrent Streak: 1\nLongest Streak: 2`;
|
||||||
expect(shareableStatement).toStrictEqual(expected);
|
expect(shareableStatement).toStrictEqual(expected);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue