Skip to content

Commit

Permalink
Fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
tschumpr committed Jan 23, 2024
1 parent 9e8265f commit d502eb6
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/client/cypress/e2e/admin/loginScreen.cy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { loginAsAdmin } from "../testHelpers";
import { loginAsAdmin } from "../helpers/testHelpers";

describe("Admin login preview tests", () => {
it("displays correct message when publishing a new welcome message.", () => {
Expand Down
2 changes: 1 addition & 1 deletion src/client/cypress/e2e/app.cy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { loginAsAdmin, loginAsEditorInViewerMode } from "./testHelpers";
import { loginAsAdmin, loginAsEditorInViewerMode } from "./helpers/testHelpers";

describe("General app tests", () => {
it("Displays the login page in the correct language", () => {
Expand Down
2 changes: 1 addition & 1 deletion src/client/cypress/e2e/editor/attachments.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
createAndEditBoreholeAsAdmin,
deleteDownloadedFile,
readDownloadedFile,
} from "../testHelpers";
} from "../helpers/testHelpers";

describe("Tests for 'Attachments' edit page.", () => {
it("creates, downloads and deletes attachments.", () => {
Expand Down
2 changes: 1 addition & 1 deletion src/client/cypress/e2e/editor/boreholeform.cy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { newEditableBorehole } from "../testHelpers";
import { newEditableBorehole } from "../helpers/testHelpers";

describe("Test for the borehole form.", () => {
it("Creates a borehole and fills dropdowns.", () => {
Expand Down
2 changes: 1 addition & 1 deletion src/client/cypress/e2e/editor/chronostratigraphy.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
createStratigraphy,
loginAsAdmin,
bearerAuth,
} from "../testHelpers";
} from "../helpers/testHelpers";

describe("Tests for the chronostratigraphy editor.", () => {
beforeEach(function () {
Expand Down
2 changes: 1 addition & 1 deletion src/client/cypress/e2e/editor/coordinates.cy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { newEditableBorehole, delayedType } from "../testHelpers";
import { newEditableBorehole, delayedType } from "../helpers/testHelpers";

describe("Tests for editing coordinates of a borehole.", () => {
beforeEach(() => {
Expand Down
2 changes: 1 addition & 1 deletion src/client/cypress/e2e/editor/emptyMessages.cy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { newUneditableBorehole } from "../testHelpers";
import { newUneditableBorehole } from "../helpers/testHelpers";

describe("Messages for empty profiles", () => {
beforeEach(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
createBorehole,
createStratigraphy,
loginAsAdmin,
} from "../testHelpers";
} from "../helpers/testHelpers";

describe("Tests for the groundwater level measurement editor.", () => {
beforeEach(function () {
Expand Down
2 changes: 1 addition & 1 deletion src/client/cypress/e2e/editor/layerform.cy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { newEditableBorehole } from "../testHelpers";
import { newEditableBorehole } from "../helpers/testHelpers";

describe("Tests for the layer form.", () => {
it("Creates a layer and fills all dropdowns with multiple selection.", () => {
Expand Down
2 changes: 1 addition & 1 deletion src/client/cypress/e2e/editor/lithostratigraphy.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
createStratigraphy,
bearerAuth,
loginAsAdmin,
} from "../testHelpers";
} from "../helpers/testHelpers";

describe("Tests for the lithostratigraphy editor.", () => {
beforeEach(function () {
Expand Down
2 changes: 1 addition & 1 deletion src/client/cypress/e2e/editor/waterIngress.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
createBorehole,
createStratigraphy,
loginAsAdmin,
} from "../testHelpers";
} from "../helpers/testHelpers";

describe("Tests for the wateringress editor.", () => {
beforeEach(function () {
Expand Down
2 changes: 1 addition & 1 deletion src/client/cypress/e2e/hierarchicalDataFilter.cy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { loginAsAdmin } from "./testHelpers";
import { loginAsAdmin } from "./helpers/testHelpers";

describe("Hierachical data filter tests", () => {
it("check visible filters", () => {
Expand Down
2 changes: 1 addition & 1 deletion src/client/cypress/e2e/identifierFilter.cy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { newEditableBorehole } from "./testHelpers";
import { newEditableBorehole } from "./helpers/testHelpers";

describe("Tests for filtering data by identifier.", () => {
it("can filter by identifier", () => {
Expand Down
2 changes: 1 addition & 1 deletion src/client/cypress/e2e/srsFilter.cy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { newEditableBorehole, loginAsAdmin } from "./testHelpers";
import { newEditableBorehole, loginAsAdmin } from "./helpers/testHelpers";

describe("Tests for filtering data by reference system.", () => {
function goToEditorLocationFilter() {
Expand Down

0 comments on commit d502eb6

Please sign in to comment.