You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Starting from version 5, Jasmine can run specs in parallel. See here. Once we support it, we should expose reporterCapabilities: { parallel: true }.
Describe the solution you'd like
Two approaches we may take:
Set up the link between workers and the main process to pass Allure messages; process Jasmine events as they are reported.
Inject the Allure reporter into the worker itself. That may also work because Allure supports the independent handling of tests (test results combine naturally in the result folder). That's how Allure Mocha's support of parallel mode is implemented.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Starting from version 5, Jasmine can run specs in parallel. See here. Once we support it, we should expose
reporterCapabilities: { parallel: true }
.Describe the solution you'd like
Two approaches we may take:
The text was updated successfully, but these errors were encountered: