diff --git a/.vib/solr/cypress/cypress/integration/solr_spec.js b/.vib/solr/cypress/cypress/integration/solr_spec.js index a88899554c..2add116633 100644 --- a/.vib/solr/cypress/cypress/integration/solr_spec.js +++ b/.vib/solr/cypress/cypress/integration/solr_spec.js @@ -1,5 +1,5 @@ /// -import { random, getBasicAuthHeader } from "./utils"; +import { random, getBasicAuthHeader } from "../support/utils"; it("allows accessing the Dashboard", () => { cy.login(); @@ -39,7 +39,7 @@ it("allows registering a user", () => { * SolR does also offer the possibility of uploading a file via UI. Nevertheless, * Cypress seems to struggle setting the Content-Type header to application/json * and the server refuses to process a octet-stream object. Use the API instead. -*/ + */ it("allows uploading and indexing a file", () => { cy.fixture("books").then(($books) => { const formData = new FormData(); diff --git a/.vib/solr/cypress/cypress/integration/utils.js b/.vib/solr/cypress/cypress/support/utils.js similarity index 100% rename from .vib/solr/cypress/cypress/integration/utils.js rename to .vib/solr/cypress/cypress/support/utils.js