We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to test the below condition
sp.create_login_request_url(idp, {}, function (err, login_url, request_id) { if (err != null){ failure(500); }
Same for the log out function sp.create_logout_request_url(....)
Its always sending the err = null.
Need help, writing the Jest test cases for the code!
The text was updated successfully, but these errors were encountered:
It seems that for test cases, we specify options to define assert_endpoint: https://github.com/Clever/saml2/blob/master/test/saml2.coffee#L1033.
options
assert_endpoint
Can you try to do the same?
Sorry, something went wrong.
No branches or pull requests
How to test the below condition
sp.create_login_request_url(idp, {}, function (err, login_url, request_id) {
if (err != null){
failure(500);
}
Same for the log out function
sp.create_logout_request_url(....)
Its always sending the err = null.
Need help, writing the Jest test cases for the code!
The text was updated successfully, but these errors were encountered: