@@ -2,20 +2,20 @@ import { expect } from "@playwright/test";
2
2
import { test } from "./base.ts" ;
3
3
4
4
/**
5
- * All tests in this file are matched with a Currents Quarantine Rule based on filename.
6
- * See the `rules ` fixture in `base.ts` to see how the rules fixtures were configured,
7
- * and the docs for more information on how to configure rules : https://docs.currents.dev/guides/automation-rules
5
+ * All tests in this file are matched with a Currents Quarantine Action based on filename.
6
+ * See the `action ` fixture in `base.ts` to see how the action fixtures were configured,
7
+ * and the docs for more information on how to configure actions : https://docs.currents.dev/guides/currents-actions
8
8
*
9
9
*/
10
10
11
11
/**
12
12
* This is a failing test that will be quarantined by the file based rule
13
13
*
14
- * | field | operation | value | - | action |
15
- * | ----- | --------- | --------------- | --- | ---------- |
16
- * | File | is | 8-rules .spec.ts | -> | Quarantine |
14
+ * | field | operation | value | - | action |
15
+ * | ----- | --------- | ----------------- | --- | ---------- |
16
+ * | File | is | 8-actions .spec.ts | -> | Quarantine |
17
17
*/
18
- test ( "rules quarantine test" , async ( { page } ) => {
18
+ test ( "action quarantine test" , async ( { page } ) => {
19
19
await page . goto ( "https://demo.playwright.dev/todomvc" ) ;
20
20
21
21
// Use locators to represent a selector and re-use them
@@ -28,14 +28,14 @@ test("rules quarantine test", async ({ page }) => {
28
28
} ) ;
29
29
30
30
/**
31
- * This tests will be completely skipped by a rule that matches fileName + test name
31
+ * This tests will be completely skipped by an Action that matches fileName + test name
32
32
*
33
- * | field | operation | value | - | action |
34
- * | ----- | --------- | --------------- | ---- | ---------- |
35
- * | File | is | 8-rules .spec.ts | And | |
36
- * | Title | is | rules skip test | -> | Skip |
33
+ * | field | operation | value | - | action |
34
+ * | ----- | --------- | ----------------- | ---- | ---------- |
35
+ * | File | is | 8-actions .spec.ts | And | |
36
+ * | Title | is | action skip test | -> | Skip |
37
37
*/
38
- test ( "rules skip test" , async ( { page } ) => {
38
+ test ( "action skip test" , async ( { page } ) => {
39
39
await page . goto ( "https://demo.playwright.dev/todomvc" ) ;
40
40
41
41
// Use locators to represent a selector and re-use them
0 commit comments