fix error is OfferDialog where assignment to a project was missed, plus some refactors

This commit is contained in:
2024-09-16 15:12:32 -06:00
parent 008ae9e906
commit 4fd2319d53
6 changed files with 27 additions and 22 deletions

View File

@@ -1,11 +1,11 @@
import { test, expect } from '@playwright/test';
import { importUser, createUniqueStringsArray, createRandomNumbersArray } from './testUtils';
test('Record 10 new gifts', async ({ page }) => {
const giftCount = 10;
test('Record 9 new gifts', async ({ page }) => {
const giftCount = 9; // because 10 has taken us above 30 seconds
// Standard text
const standardTitle = "Gift ";
const standardTitle = 'Gift ';
// Field value arrays
const finalTitles = [];