18219: Adds property editor to groups create dialog.
[arvados-workbench2.git] / cypress / integration / project.spec.js
index 9b62943813840fe87855e7dddce273df58c98aa6..6b87a3c2c0b76e6c2334c256fd8f50e9d7cae01c 100644 (file)
@@ -28,13 +28,13 @@ 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();
         cy.get('[data-cy=side-panel-new-project]').click();
         cy.get('[data-cy=form-dialog]')
-            .should('contain', 'New project')
+            .should('contain', 'New Project')
             .within(() => {
                 cy.get('[data-cy=name-field]').within(() => {
                     cy.get('input').type(projName);
@@ -42,6 +42,7 @@ describe('Project tests', function() {
 
             });
         // Key: Color (IDTAGCOLORS) - Value: Magenta (IDVALCOLORS3)
+        cy.get('[data-cy=form-dialog]').should('not.contain', 'Color: Magenta');
         cy.get('[data-cy=resource-properties-form]').within(() => {
             cy.get('[data-cy=property-field-key]').within(() => {
                 cy.get('input').type('Color');
@@ -73,7 +74,7 @@ describe('Project tests', function() {
             cy.get('[data-cy=side-panel-button]').click();
             cy.get('[data-cy=side-panel-new-project]').click();
             cy.get('[data-cy=form-dialog]')
-                .should('contain', 'New project')
+                .should('contain', 'New Project')
                 .within(() => {
                     cy.get('[data-cy=parent-field]').within(() => {
                         cy.get('input').invoke('val').then((val) => {
@@ -201,7 +202,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();