[arvados-workbench2] updated: 2.5.0-72-g3ef39d86
git repository hosting
git at public.arvados.org
Mon Feb 27 21:18:33 UTC 2023
Summary of changes:
cypress/integration/project.spec.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
via 3ef39d864a28ff8c91eca13ce5363dda4ea70fe2 (commit)
from 4a916426f9220c5999963ea76d71e0a6a32e14fe (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 3ef39d864a28ff8c91eca13ce5363dda4ea70fe2
Author: Stephen Smith <stephen at curii.com>
Date: Mon Feb 27 16:18:18 2023 -0500
19930: Fix project cypress test
Arvados-DCO-1.1-Signed-off-by: Stephen Smith <stephen at curii.com>
diff --git a/cypress/integration/project.spec.js b/cypress/integration/project.spec.js
index f58cf7fe..6a3043d6 100644
--- a/cypress/integration/project.spec.js
+++ b/cypress/integration/project.spec.js
@@ -163,20 +163,20 @@ describe('Project tests', function() {
editProjectDescription(projName, 'Test description');
// Check description is set
- verifyProjectDescription("<p>Test description</p>");
+ verifyProjectDescription(projName, "<p>Test description</p>");
// Clear description
editProjectDescription(projName, '{selectall}{backspace}');
// Check description is null
- verifyProjectDescription(null);
+ verifyProjectDescription(projName, null);
// Set description to contain whitespace
editProjectDescription(projName, '{selectall}{backspace} x');
editProjectDescription(projName, '{backspace}');
// Check description is null
- verifyProjectDescription(null);
+ verifyProjectDescription(projName, null);
});
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list