mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
28 lines
772 B
TypeScript
28 lines
772 B
TypeScript
|
import { ApiTokenType } from '../../types/models/api-token';
|
||
|
import { validateSchema } from '../validate';
|
||
|
import { ApiTokenSchema } from './api-token-schema';
|
||
|
|
||
|
test('apiTokenSchema', () => {
|
||
|
const data: ApiTokenSchema = {
|
||
|
secret: '',
|
||
|
username: '',
|
||
|
type: ApiTokenType.CLIENT,
|
||
|
environment: '',
|
||
|
projects: [],
|
||
|
expiresAt: '2022-01-01T00:00:00.000Z',
|
||
|
createdAt: '2022-01-01T00:00:00.000Z',
|
||
|
seenAt: '2022-01-01T00:00:00.000Z',
|
||
|
project: '',
|
||
|
};
|
||
|
|
||
|
expect(
|
||
|
validateSchema('#/components/schemas/apiTokenSchema', data),
|
||
|
).toBeUndefined();
|
||
|
});
|
||
|
|
||
|
test('apiTokenSchema empty', () => {
|
||
|
expect(
|
||
|
validateSchema('#/components/schemas/apiTokenSchema', {}),
|
||
|
).toMatchSnapshot();
|
||
|
});
|