办学质量监测教学评价系统
du
2 天以前 7bf1f40b58ee3c61664b5f16a84cbaac59f88735
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { describe, expect, it } from 'vitest';
 
import { optionsToEnum } from '../enum-options';
 
describe('optionsToEnum Test', () => {
  it('should return an enum object', () => {
    const genderOptions = [
      { label: '男', value: 1, enumName: 'GENDER_MALE' },
      { label: '女', value: 2, enumName: 'GENDER_FEMALE' },
    ] as const;
 
    const enumTest = optionsToEnum(genderOptions);
    const male = enumTest.GENDER_MALE;
    const female = enumTest.GENDER_FEMALE;
 
    expect(male).toBe(1);
    expect(female).toBe(2);
  });
});