17152: Adjusts cypress integration tests.
[arvados.git] / cypress / integration / search.spec.js
index 05c345c9a8629ecc06f6683d6c9135e5d48c80b5..06131a2ef09c3966f8e009c661e78aea0fb174f9 100644 (file)
@@ -46,6 +46,7 @@ describe('Search tests', function() {
         cy.createCollection(adminUser.token, {
             name: colName,
             owner_uuid: activeUser.user.uuid,
+            preserve_version: true,
             manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n"})
         .as('originalVersion').then(function() {
             // Change the file name to create a new version.
@@ -73,11 +74,11 @@ describe('Search tests', function() {
             // Search for only collection's current version
             cy.visit(`/search-results?q=${encodeURIComponent(searchQuery)}`);
             cy.get('[data-cy=search-results]').should('contain', 'head version');
-            cy.get('[data-cy=search-results]').should('not.contain', 'old version');
+            cy.get('[data-cy=search-results]').should('not.contain', 'version 1');
             // ...and then, include old versions.
             cy.visit(`/search-results?q=${encodeURIComponent(searchQuery + ' is:pastVersion')}`);
             cy.get('[data-cy=search-results]').should('contain', 'head version');
-            cy.get('[data-cy=search-results]').should('contain', 'old version');
+            cy.get('[data-cy=search-results]').should('contain', 'version 1');
         });
     });
 });
\ No newline at end of file