Conditions

Reference documentation of Conditions that are available for Currents Actions

An Actions can have one or more conditions. You can use AND or OR combinator for multiple conditions. Use comma-separated strings to define list values.

Fields

File

Test filename path, for example path/to/file.spec.ts.

Value Types

string | string[]

Supported Operators

all

Test Title

Test title, for example in test definition test("should open landing page") it is should open landing page.

Value Types

string | string[]

Supported Operators

all

Test Title Path

Full title path including named describe statements.

Value Types

string | string[]

Supported Operators

all

Test ID

Playwright test id, matching the test case id in the Reporter API.

Value Types

string | string[]

Supported Operators

all

Tags

Test tag list. For example, if a test has the following list of tags ['a', 'b'], each value in the list will be evaluated separately.

Value Types

string | string[]

Supported Operators

all

Project

Playwright project name as defined in your playwright.config.ts.

Value Types

string | string[]

Supported Operators

all

Git Author Email

Git commit author email. See Commit Information to explore how Currents collects git commit information.

Value Types

string | string[]

Supported Operators

all

Git Author Branch

Git commit author name. See Commit Information to explore how Currents collects git commit information.

Value Types

string | string[]

Supported Operators

all

Git Branch

Git commit branch name. See Commit Information to explore how Currents collects git commit information.

Value Types

string | string[]

Supported Operators

all

Git Message

Git commit message. See Commit Information to explore how Currents collects git commit information.

Value Types

string | string[]

Supported Operators

all

Git Remote Origin

Git remote origin URL. See Commit Information to explore how Currents collects git commit information.

Value Types

string | string[]

Supported Operators

all

Operators

Operator
Description

is

exact match

is not

the value is different

in

one of the comma-separated values is an exact match

not in

none of the comma-separated values match

is any

fields doesn't exists, undefinedor null

is empty

field has no value

Last updated