17579: added check if search input contains value
[arvados-workbench2.git] / cypress / integration / project.spec.js
index 9b62943813840fe87855e7dddce273df58c98aa6..23e1ba248584ed1883180a98667ae36e8b310167 100644 (file)
@@ -64,7 +64,7 @@ describe('Project tests', function() {
         .then(function() {
             expect(this.projects).to.have.lengthOf(1);
             expect(this.projects[0].properties).to.deep.equal(
-                {IDTAGCOLORS: 'IDVALCOLORS3'});
+                { Color: 'Magenta' });
         });
     });
 
@@ -201,7 +201,7 @@ describe('Project tests', function() {
             group_class: 'project',
         }).as('testProject1');
 
-        cy.getAll('@testProject1', '@testProject2').then(function([testProject1, testProject2]) {
+        cy.getAll('@testProject1').then(function([testProject1]) {
             cy.loginAs(activeUser);
 
             cy.get('[data-cy=side-panel-tree]').contains(testProject1.name).click();