mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
cecca59f65
* task: add openapi for reset password * fix: add respondWithValidation and remove email from tests * fix: change tags to other
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();
|
|
});
|