[ARVADOS-WORKBENCH2] updated: 2.1.0-40-gf9f06922
Git user
git at public.arvados.org
Tue Nov 3 22:53:56 UTC 2020
Summary of changes:
cypress/integration/collection-panel.spec.js | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
via f9f06922a53c2982f0368a06abc39787caa40eb0 (commit)
from cc267edd16a9912fb4f9e8dce207abdc8a1a827c (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 f9f06922a53c2982f0368a06abc39787caa40eb0
Author: Daniel Kutyła <daniel.kutyla at contractors.roche.com>
Date: Tue Nov 3 23:53:06 2020 +0100
16005: Fixed tests
Arvados-DCO-1.1-Signed-off-by: Daniel Kutyła <daniel.kutyla at contractors.roche.com>
diff --git a/cypress/integration/collection-panel.spec.js b/cypress/integration/collection-panel.spec.js
index 63737940..7bdf7eab 100644
--- a/cypress/integration/collection-panel.spec.js
+++ b/cypress/integration/collection-panel.spec.js
@@ -70,15 +70,14 @@ describe('Collection panel tests', function() {
.and('contain', 'someValue')
.and('not.contain', 'anotherKey')
.and('not.contain', 'anotherValue');
- cy.wait(1000);
if (isWritable === true) {
// Check that properties can be added.
cy.get('[data-cy=collection-properties-form]').within(() => {
cy.get('[data-cy=property-field-key]').within(() => {
- cy.get('input').type('anotherKey');
+ cy.get('input', { force: true }).type('anotherKey');
});
cy.get('[data-cy=property-field-value]').within(() => {
- cy.get('input').type('anotherValue');
+ cy.get('input', { force: true }).type('anotherValue');
});
cy.root().submit();
})
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list