mirror of
https://git.boykissers.com/pawkey/pawkey-sk.git
synced 2025-12-20 04:04:16 +00:00
14 lines
350 B
TypeScript
14 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');
|
|
});
|
|
});
|