Actions
Reference documentation for actions that apply as part for Currents Actions Engine
Available Actions
The following actions are supported by Currents Actions Engine
Pre-Test Actions
These are Actions that run in the client immediately before the test is executed.
skip
do not run the test at all, same as test.skip()
v1.9.0
Post-Test Actions
These are actions that are run in the client after the test has finished being exectured, but before the test result is reported to Currents.
quarantine
run the test, but ignore the failures; the results will be sent over to Currents, test status will be skipped
v1.9.0
Limitations
Errors that occur in Playwright's
beforeAll
hook are not suppressed even if the corresponding test has theskip
orquarantine
action. Resulting in tests still being reported as failed.Currents Action fixtures run after the
beforeAll
hook, and skipped by Playwright if the hook fails.We are looking at solutions to resolve this in a future release.
Last updated
Was this helpful?