UNPKG

e2ed

Version:

E2E testing framework over Playwright

17 lines (13 loc) 379 B
import {ApiRoute} from 'autotests/routes'; import type {ApiUserSignUpRequest, ApiUserSignUpResponse} from 'autotests/types'; /** * Client API route for user signUp. */ export class UserSignUp extends ApiRoute<undefined, ApiUserSignUpRequest, ApiUserSignUpResponse> { getMethod(): 'POST' { return 'POST'; } getPath(): string { return '/user/auth/signUp'; } }