Browse Source

Playwright: added import

playwright-pwa-install-test
Jose Olarte III 2 months ago
parent
commit
7033d259e1
  1. 1
      test-playwright/20-create-project.spec.ts
  2. 1
      test-playwright/30-record-gift.spec.ts
  3. 1
      test-playwright/40-add-contact.spec.ts

1
test-playwright/20-create-project.spec.ts

@ -1,4 +1,5 @@
import { test, expect } from '@playwright/test';
import { importUser } from './testUtils';
test('Create new project, then search for it', async ({ page }) => {
// Generate a random string of 16 characters

1
test-playwright/30-record-gift.spec.ts

@ -1,4 +1,5 @@
import { test, expect } from '@playwright/test';
import { importUser } from './testUtils';
test('Record something given', async ({ page }) => {
// Generate a random string of 16 characters

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

@ -1,4 +1,5 @@
import { test, expect } from '@playwright/test';
import { importUser } from './testUtils';
test('Add contact', async ({ page }) => {
// Import user 01

Loading…
Cancel
Save