mirror of
https://gitee.com/dapppp/ruoyi-plus-vben5.git
synced 2026-03-14 22:02:01 +08:00
feat: Options转Enum工具函数
This commit is contained in:
19
packages/utils/src/helpers/__tests__/enum-options.test.ts
Normal file
19
packages/utils/src/helpers/__tests__/enum-options.test.ts
Normal file
@@ -0,0 +1,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);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user