component-dbs-core
Version:
DTO objects shared among device backend
18 lines (17 loc) • 679 B
TypeScript
import { IdentityLoginInputDto } from '../../dtos/identityDto';
import { DeviceService } from '../../../devices/deviceService';
import { IdentityTestCase } from './testCases';
export declare class SignUpTestSuite {
params: object[];
getParameterForTestCase(testCase: number, deviceService: DeviceService, testWithMockApi: boolean): Promise<IdentityLoginInputDto | {
email: string;
password: string;
deviceUuid: string;
testCaseCode: IdentityTestCase.SIGNUP_SUCCESS;
} | {
email: string;
password: string;
deviceUuid: string;
testCaseCode: IdentityTestCase.SIGNUP_FAIL_USER_EXISTS;
} | undefined>;
}