From 8b4fb54f788b2eea4b556e6560dfe449bd610547 Mon Sep 17 00:00:00 2001 From: Jack Dunn <56315967+JackDunnCodes@users.noreply.github.com> Date: Tue, 9 Dec 2025 14:48:53 +0000 Subject: [PATCH] Regroup TOTP tests seperated by prev. commit --- tests/tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests.js b/tests/tests.js index a2e942f..72dc07f 100644 --- a/tests/tests.js +++ b/tests/tests.js @@ -61,9 +61,9 @@ async function testTotpFields() { [ '', { id: '2fa', type: 'text', maxLength: '4' }, 'Ignore if field maxLength too small', false ], [ '', { id: '2fa', type: 'text', maxLength: '12' }, 'Ignore if field maxLength too long', false ], [ '', { id: 'promocode', type: 'text', }, 'promocode id is not acceptable', false ], + [ '', { id: 'Promotional Code', type: 'text', }, 'Promotional Code id is not acceptable', false ], [ '', { id: 'postcode', type: 'text', }, 'postcode id is not acceptable', false ], [ '', { id: 'postalcode', type: 'text', }, 'postalcode id is not acceptable', false ], - [ '', { id: 'Promotional Code', type: 'text', }, 'Promotional Code id is not acceptable', false ], [ '', { id: 'encode', type: 'text', }, 'encode id is not acceptable', false ], [ '', { id: 'encodedText', type: 'text', }, 'encodedText is not acceptable', false ], [ '', { id: 'decoder', type: 'text', }, 'decoder id is not acceptable', false ],