fix test
This commit is contained in:
parent
31f3f5f0f0
commit
da2483f7fe
|
@ -74,19 +74,19 @@ describe('ReactionService', () => {
|
|||
});
|
||||
|
||||
test('fallback - undefined', async () => {
|
||||
assert.strictEqual(await reactionService.toDbReaction(undefined), '👍');
|
||||
assert.strictEqual(await reactionService.toDbReaction(undefined), '❤');
|
||||
});
|
||||
|
||||
test('fallback - null', async () => {
|
||||
assert.strictEqual(await reactionService.toDbReaction(null), '👍');
|
||||
assert.strictEqual(await reactionService.toDbReaction(null), '❤');
|
||||
});
|
||||
|
||||
test('fallback - empty', async () => {
|
||||
assert.strictEqual(await reactionService.toDbReaction(''), '👍');
|
||||
assert.strictEqual(await reactionService.toDbReaction(''), '❤');
|
||||
});
|
||||
|
||||
test('fallback - unknown', async () => {
|
||||
assert.strictEqual(await reactionService.toDbReaction('unknown'), '👍');
|
||||
assert.strictEqual(await reactionService.toDbReaction('unknown'), '❤');
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue