From 9ad18b67b7633e898e46aa5fcb1a8b1676a2ec1e Mon Sep 17 00:00:00 2001 From: Daniel Arteaga Date: Wed, 13 Jul 2022 11:14:48 +0200 Subject: [PATCH] [bitnami/solr] Wrong files in integration directory (#11146) Signed-off-by: Daniel Arteaga Barba --- .vib/solr/cypress/cypress/integration/solr_spec.js | 4 ++-- .vib/solr/cypress/cypress/{integration => support}/utils.js | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename .vib/solr/cypress/cypress/{integration => support}/utils.js (100%) 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