mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-26 03:18:17 +01:00
Move to protobufjs in ts/groups.ts
This commit is contained in:
19
ts/test-both/util/dropNull_test.ts
Normal file
19
ts/test-both/util/dropNull_test.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
// Copyright 2021 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
import { assert } from 'chai';
|
||||
|
||||
import { dropNull } from '../../util/dropNull';
|
||||
|
||||
describe('dropNull', () => {
|
||||
it('swaps null with undefined', () => {
|
||||
assert.strictEqual(dropNull(null), undefined);
|
||||
});
|
||||
|
||||
it('leaves undefined be', () => {
|
||||
assert.strictEqual(dropNull(undefined), undefined);
|
||||
});
|
||||
|
||||
it('non-null values undefined be', () => {
|
||||
assert.strictEqual(dropNull('test'), 'test');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user