(baseUrl: string)
| 27 | export const DEFAULT_USER_COLLECTIONS_COUNT = 7; |
| 28 | |
| 29 | export const getGraphqlClient = (baseUrl: string) => { |
| 30 | return new GraphQLClient(`${baseUrl}/backend/graphql`); |
| 31 | }; |
| 32 | |
| 33 | export async function registerTestUser(baseUrl: string) { |
| 34 | const client = getGraphqlClient(baseUrl); |
no outgoing calls
no test coverage detected