mirror of
https://codeberg.org/yeentown/barkey
synced 2024-11-25 23:25: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');
|
|
});
|
|
});
|