18219: Updates cypress tests.
[arvados-workbench2.git] / cypress / integration / project.spec.js
index 23e1ba248584ed1883180a98667ae36e8b310167..3ffdcc2df2cbc796db9ea4a4314a32cbd2809560 100644 (file)
@@ -28,7 +28,7 @@ describe('Project tests', function() {
         cy.clearLocalStorage();
     });
 
-    it('adds creates a new project with properties', function() {
+    it('creates a new project with properties', function() {
         const projName = `Test project (${Math.floor(999999 * Math.random())})`;
         cy.loginAs(activeUser);
         cy.get('[data-cy=side-panel-button]').click();
@@ -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(
-                { Color: 'Magenta' });
+                {IDTAGCOLORS: 'IDVALCOLORS3'});
         });
     });