mirror of
https://activitypub.software/TransFem-org/Sharkey
synced 2024-11-24 23:15:13 +00:00
13 lines
350 B
TypeScript
13 lines
350 B
TypeScript
import { fromTuple } from '@/misc/from-tuple.js';
|
|
|
|
describe(fromTuple, () => {
|
|
it('should return value when value is not an array', () => {
|
|
const value = fromTuple('abc');
|
|
expect(value).toBe('abc');
|
|
});
|
|
|
|
it('should return first element when value is an array', () => {
|
|
const value = fromTuple(['abc']);
|
|
expect(value).toBe('abc');
|
|
});
|
|
});
|