common.test.ts 412 B

12345678910111213
  1. import { it, expect, describe } from 'vitest';
  2. import { obj2propsList } from '@/utils/common';
  3. describe('test obj2propsList', () => {
  4. it('obj2propsList', () => {
  5. const obj = { '0': '男', '1': '女' };
  6. const list = obj2propsList(obj);
  7. expect(list[0].label).eq('男');
  8. expect(list.length).eq(2);
  9. expect(list[0].value).eq('0');
  10. expect(obj2propsList(obj, true)[0].value).eq(0);
  11. });
  12. });