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
Has web-test-runner-jasmine been tested with @web/test-runner-junit-reporter and @web/test-runner-junit-reporter
web-test-runner-jasmine
@web/test-runner-junit-reporter
I'm currently facing some issues (modernweb-dev/web#2780).
Could it be related to these lines in web-test-runner-jasmine?
web-test-runner-jasmine/src/index.ts
Lines 62 to 65 in 6f85310
Lines 80 to 90 in 6f85310
If I understand correctly, when success, there is not much info returned.
The text was updated successfully, but these errors were encountered:
Also, not sure if a regresion or a new bug. For some reason e.description is always undefined. Also fails with single or without describe
e.description
describe
describe("foo", () => { describe("bar", () => { it("should pass", () => { expect(true).toBeTruthy(); }); }); describe("bar-false", () => { it("should fail", () => { expect(false).toBeTruthy(); }); }); });
Lines 63 and 72 should be result.description instead of e.description. e is of type Expectation, not SpecResult.
result.description
e
Also, it'd be nice to also implement suiteDone method and complete information of testResults to fix reporters.
suiteDone
testResults
I'll try to do a PR if I get some free time.
Sorry, something went wrong.
No branches or pull requests
Has
web-test-runner-jasmine
been tested with@web/test-runner-junit-reporter
and@web/test-runner-junit-reporter
I'm currently facing some issues (modernweb-dev/web#2780).
Could it be related to these lines in
web-test-runner-jasmine
?web-test-runner-jasmine/src/index.ts
Lines 62 to 65 in 6f85310
web-test-runner-jasmine/src/index.ts
Lines 80 to 90 in 6f85310
If I understand correctly, when success, there is not much info returned.
The text was updated successfully, but these errors were encountered: