mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
20 lines
511 B
TypeScript
20 lines
511 B
TypeScript
|
import { validateSchema } from '../validate';
|
||
|
import { ChangePasswordSchema } from './change-password-schema';
|
||
|
|
||
|
test('changePasswordSchema', () => {
|
||
|
const data: ChangePasswordSchema = {
|
||
|
token: '',
|
||
|
password: '',
|
||
|
};
|
||
|
|
||
|
expect(
|
||
|
validateSchema('#/components/schemas/changePasswordSchema', data),
|
||
|
).toBeUndefined();
|
||
|
});
|
||
|
|
||
|
test('changePasswordSchema empty', () => {
|
||
|
expect(
|
||
|
validateSchema('#/components/schemas/changePasswordSchema', {}),
|
||
|
).toMatchSnapshot();
|
||
|
});
|