Skip to content

Files

Latest commit

 

History

History
20 lines (13 loc) · 1.04 KB

File metadata and controls

20 lines (13 loc) · 1.04 KB
description
Reference documentation for actions that apply as part for Currents Actions Engine

Actions

Available Actions

The following actions are supported by Currents Actions Engine

ActionDescriptionMin Version
skipdo not run the test at all, same as test.skip()v1.9.0
quarantinerun the test, but ignore the failures; the results will be sent over to Currents, test status will be skippedv1.9.0

Limitations

  • Errors that occur in Playwright's afterAll hook are not suppressed even if the corresponding test has the skip or quarantine action. Resulting in tests still being reported as failed.
    • Currents Action fixtures run before the afterAll hook, and aren't handling these errors.
    • We are looking at solutions to resolve this in a future release.