ray-template/__test__/app/prefixCacheKey.spec.ts
2024-03-23 11:25:28 +08:00

17 lines
444 B
TypeScript

import { prefixCacheKey } from '../../src/utils/app/prefixCacheKey'
describe('prefixCacheKey', () => {
it('should return the key with the default prefix', () => {
const key = 'signing'
expect(prefixCacheKey(key)).toBe(key)
})
it('should return the key with the custom prefix', () => {
const key = 'signing'
const customPrefix = 'ray-'
expect(prefixCacheKey(key, { customPrefix })).toBe(customPrefix + key)
})
})