-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
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
Algorithm tests & interop #47
Conversation
Signed-off-by: pstlouis <[email protected]>
Signed-off-by: pstlouis <[email protected]>
Signed-off-by: pstlouis <[email protected]>
Signed-off-by: pstlouis <[email protected]>
Signed-off-by: PatStLouis <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approving, but that console.log disable is weird and concerning.
tests/helpers.js
Outdated
@@ -145,3 +174,17 @@ export async function decodeSl({encodedList}) { | |||
'representation of a GZIP-compressed bitstring.'); | |||
return decoded; | |||
} | |||
|
|||
export async function addJsonAttachment(fileName, content) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have no objections to adding json output to allure, but disabling console.log does cause concern. why is console.log disabled here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm aware it does, the reason is that if the test suite is ran with the db reporter, allure will complain that there is no allure framework loaded. It prints one line every time with this warning.
Disabling the console for this function call only was the most convenient method I found to avoid this.
This has been removed from this PR entirely we can discuss it in a subsequent PR.
Signed-off-by: PatStLouis <[email protected]>
Signed-off-by: PatStLouis <[email protected]>
Signed-off-by: PatStLouis <[email protected]>
…list-test-suite into algorithm-tests
This is pending on merging #46
Adds all remaining normative statements and interop tests.