-
Notifications
You must be signed in to change notification settings - Fork 151
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
Make spec reporting consistent with matrix-appservice-bridge #1680
base: develop
Are you sure you want to change the base?
Conversation
The ad-hoc logging printed every test's name, even when skipped by --filter, causing the output to be longer than it should
Signed-off-by: Valentin Lorentz <progval plus matrixsignoff at progval dot net> |
Any idea what is causing this?
it seems sensitive to test order, but I can't figure what is causing it |
@@ -87,7 +87,8 @@ | |||
"eslint-plugin-react": "^7.32.2", | |||
"eslint-plugin-react-hooks": "^4.6.0", | |||
"homerunner-client": "^0.0.6", | |||
"jasmine": "^3.99.0", | |||
"jasmine": "^4.2.1", |
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.
At some point I want to toss out jasmine and replace with jest to broadly be aligned with the rest of matrix-org, but for now any improvements are good.
@@ -20,14 +20,6 @@ const main = proxyquire("../../lib/main.js", { | |||
"matrix-org-irc": ircMock, | |||
}); | |||
|
|||
// Log the test case. Jasmine is a global var. | |||
jasmine.getEnv().addReporter({ |
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.
god, what a wart.
The ad-hoc logging printed every test's name, even when skipped by --filter, causing the output to be longer than it should