From e16560e7689a373b0bf33d3c4adf419583e986b4 Mon Sep 17 00:00:00 2001 From: Martin McKeaveney Date: Thu, 15 Sep 2022 20:34:37 +0100 Subject: [PATCH] more random test data for rows --- qa-core/src/config/public-api/fixtures/tables.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa-core/src/config/public-api/fixtures/tables.ts b/qa-core/src/config/public-api/fixtures/tables.ts index cf76855439..d36d7e6db7 100644 --- a/qa-core/src/config/public-api/fixtures/tables.ts +++ b/qa-core/src/config/public-api/fixtures/tables.ts @@ -54,7 +54,7 @@ export const generateTable = ( export const generateRow = (overrides: Partial = {}): CreateRowParams => ({ type: "row", tableId: "seed_table", - testColumn: generator.word(), + testColumn: generator.string({ length: 32, alpha: true, numeric: true }), relationship: [generator.string({ length: 32, alpha: true, numeric: true })], ...overrides, })