@sridharkikkeri/playwright-common 1.0.39 → 1.0.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sridharkikkeri/playwright-common",
3
- "version": "1.0.39",
3
+ "version": "1.0.40",
4
4
  "description": "Production-grade Playwright framework with AI-powered self-healing, visual regression, and enterprise features",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,7 +1,7 @@
1
- import { resilientTest } from '../fixtures/fixtures';
1
+ import { test } from '@playwright/test';
2
2
  import { VisualTesting } from '../core/visual/VisualTesting';
3
3
 
4
- resilientTest('Full page comparison', async ({ page }) => {
4
+ test('Full page comparison', async ({ page }) => {
5
5
  const visual = new VisualTesting(page);
6
6
 
7
7
  await page.goto('https://playwright.dev');
@@ -13,7 +13,7 @@ resilientTest('Full page comparison', async ({ page }) => {
13
13
  });
14
14
  });
15
15
 
16
- resilientTest('Element comparison', async ({ page }) => {
16
+ test('Element comparison', async ({ page }) => {
17
17
  const visual = new VisualTesting(page);
18
18
 
19
19
  await page.goto('https://playwright.dev');
@@ -24,7 +24,7 @@ resilientTest('Element comparison', async ({ page }) => {
24
24
  });
25
25
  });
26
26
 
27
- resilientTest('Viewport comparison with masking', async ({ page }) => {
27
+ test('Viewport comparison with masking', async ({ page }) => {
28
28
  const visual = new VisualTesting(page);
29
29
 
30
30
  await page.goto('https://playwright.dev');