public static async Task CreateUser(
            this TestUserContext userContext,
            IAuthenticationService authenticationService,
            string nickname = "RandomFellow",
            string password = "******"
            )
        {
            var token = await authenticationService.SignUp(nickname, password);

            userContext.UseToken(token);
        }