Flowise/packages/server/test/utils/api-key.util.test.ts

11 lines
308 B
TypeScript

import { generateAPIKey } from '../../src/utils/apiKey'
export function apiKeyTest() {
describe('Api Key', () => {
it('should be able to generate a new api key', () => {
const apiKey = generateAPIKey()
expect(typeof apiKey === 'string').toEqual(true)
})
})
}