mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 12:19:41 +00:00
15 lines
294 B
JavaScript
15 lines
294 B
JavaScript
/* global Signal */
|
|
|
|
const { Stickers } = Signal;
|
|
|
|
describe('Stickers', () => {
|
|
describe('redactPackId', () => {
|
|
it('redacts pack IDs', () => {
|
|
assert.strictEqual(
|
|
Stickers.redactPackId('b9439fa5fdc8b9873fe64f01b88b8ccf'),
|
|
'[REDACTED]ccf'
|
|
);
|
|
});
|
|
});
|
|
});
|