fix prompt test

rngState 003ad8214ef0579cb6 fails on a single \n (line feed)

password inputs can't contain carriage returns *or* line feeds
This commit is contained in:
El RIDO 2025-02-06 08:43:02 +01:00
parent 740fd90db9
commit db15ae8b43
No known key found for this signature in database
GPG Key ID: 0F5C940A6BD81F92

View File

@ -11,7 +11,7 @@ describe('Prompt', function () {
'returns the password fed into the dialog',
'string',
function (password) {
password = password.replace(/\r+/g, '');
password = password.replace(/\r+|\n+/g, '');
var clean = jsdom('', {url: 'ftp://example.com/?0000000000000000'});
$('body').html(
'<div id="passwordmodal" class="modal fade" role="dialog">' +