@@ -2,20 +2,20 @@ import { expect } from "@playwright/test";
22import { test } from "./base.ts" ;
33
44/**
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
88 *
99 */
1010
1111/**
1212 * This is a failing test that will be quarantined by the file based rule
1313 *
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 |
1717 */
18- test ( "rules quarantine test" , async ( { page } ) => {
18+ test ( "action quarantine test" , async ( { page } ) => {
1919 await page . goto ( "https://demo.playwright.dev/todomvc" ) ;
2020
2121 // Use locators to represent a selector and re-use them
@@ -28,14 +28,14 @@ test("rules quarantine test", async ({ page }) => {
2828} ) ;
2929
3030/**
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
3232 *
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 |
3737 */
38- test ( "rules skip test" , async ( { page } ) => {
38+ test ( "action skip test" , async ( { page } ) => {
3939 await page . goto ( "https://demo.playwright.dev/todomvc" ) ;
4040
4141 // Use locators to represent a selector and re-use them
0 commit comments