mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
parent
fdbd077852
commit
c639ce8742
2 changed files with 3 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
const ignoreRegex = /(bank|coupon|postal|user|zip|promo).*code|(en|de)code(d|r)*|comment|author|error/i;
|
||||
const ignoreRegex = /(bank|coupon|post(al)?|user|zip|promo).*code|(en|de)code(d|r)*|comment|author|error/i;
|
||||
const ignoredTypes = [ 'email', 'password', 'username' ];
|
||||
const allowedInputTypes = [ 'number', 'password', 'tel', 'text' ];
|
||||
|
||||
|
|
|
|||
|
|
@ -62,6 +62,8 @@ async function testTotpFields() {
|
|||
[ '', { 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: '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 ],
|
||||
|
|
|
|||
Loading…
Reference in a new issue