Browse Source

Corrected some test labels

playwright-pwa-install-test
Jose Olarte III 2 months ago
parent
commit
2f0326f182
  1. 2
      test-playwright/10-create-user-00.spec.ts
  2. 2
      test-playwright/11-create-user-01.spec.ts
  3. 2
      test-playwright/40-add-contact.spec.ts

2
test-playwright/10-create-user-00.spec.ts

@ -1,6 +1,6 @@
import { test, expect } from '@playwright/test'; import { test, expect } from '@playwright/test';
test('Create new ID from seed', async ({ page }) => { test('Create user 00', async ({ page }) => {
// Create new ID using seed phrase "rigid shrug mobile…" // Create new ID using seed phrase "rigid shrug mobile…"
await page.goto('./start'); await page.goto('./start');
await page.getByText('You have a seed').click(); await page.getByText('You have a seed').click();

2
test-playwright/11-create-user-01.spec.ts

@ -1,6 +1,6 @@
import { test, expect } from '@playwright/test'; import { test, expect } from '@playwright/test';
test('Validate copy contact info to clipboard', async ({ page }) => { test('Create user 01', async ({ page }) => {
// Create new ID using seed phrase "island fever beef…" // Create new ID using seed phrase "island fever beef…"
await page.goto('./start'); await page.goto('./start');
await page.getByText('You have a seed').click(); await page.getByText('You have a seed').click();

2
test-playwright/40-add-contact.spec.ts

@ -1,6 +1,6 @@
import { test, expect } from '@playwright/test'; import { test, expect } from '@playwright/test';
test('Create new ID from seed', async ({ page }) => { test('Add contact', async ({ page }) => {
// Create new ID using seed phrase "rigid shrug mobile…" // Create new ID using seed phrase "rigid shrug mobile…"
await page.goto('./start'); await page.goto('./start');
await page.getByText('You have a seed').click(); await page.getByText('You have a seed').click();

Loading…
Cancel
Save