[arvados-workbench2] created: 2.4.0-200-g02effd46
git repository hosting
git at public.arvados.org
Fri Sep 23 21:01:43 UTC 2022
at 02effd46c43c6e5cabab60b1c5e2a5cc5621fbc9 (commit)
commit 02effd46c43c6e5cabab60b1c5e2a5cc5621fbc9
Author: Lucas Di Pentima <lucas.dipentima at curii.com>
Date: Fri Sep 23 18:00:55 2022 -0300
Testing if passing {delay:0} to .type() makes a difference in times. No issue #
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima at curii.com>
diff --git a/cypress/integration/collection.spec.js b/cypress/integration/collection.spec.js
index 28454a90..153b8947 100644
--- a/cypress/integration/collection.spec.js
+++ b/cypress/integration/collection.spec.js
@@ -351,7 +351,11 @@ describe('Collection panel tests', function () {
.within(() => {
cy.get('input')
.type('{selectall}{backspace}')
- .type(to, { parseSpecialCharSequences: false });
+ .type(to, {
+ parseSpecialCharSequences: false,
+ delay: 0
+ })
+ .trigger('change');
});
cy.get('[data-cy=form-submit-btn]').click();
cy.get('[data-cy=collection-files-panel]')
@@ -469,7 +473,9 @@ describe('Collection panel tests', function () {
cy.get('[data-cy=form-dialog]')
.should('contain', 'Rename')
.within(() => {
- cy.get('input').type(`{selectall}{backspace}${name}`);
+ cy.get('input')
+ .type(`{selectall}{backspace}${name}`, {delay: 0})
+ .trigger('change');
});
cy.get('[data-cy=form-dialog]')
.should('contain', 'Rename')
diff --git a/tools/arvados_config.yml b/tools/arvados_config.yml
index 3b2ecd8d..d7156e18 100644
--- a/tools/arvados_config.yml
+++ b/tools/arvados_config.yml
@@ -17,7 +17,7 @@ Clusters:
ManagedProperties:
original_owner_uuid: {Function: original_owner, Protected: true}
WebDAVCache:
- UUIDTTL: 0s
+ TTL: 0s
Login:
PAM:
Enable: true
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list