Skip to content

Commit

Permalink
Merge pull request #333 from GeoWerkstatt/npm-dependencies
Browse files Browse the repository at this point in the history
Update npm dependencies
  • Loading branch information
domi-b authored Feb 1, 2024
2 parents d2411ff + b0ceb7d commit 4d52b71
Show file tree
Hide file tree
Showing 19 changed files with 4,163 additions and 6,590 deletions.
2 changes: 1 addition & 1 deletion src/ClientApp/cypress/e2e/bohrprofilform.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe("Input form tests", () => {
cy.intercept("/bohrung/" + 41063, bohrung);
cy.intercept(
"/standort?gemeinde=Heinrichswil-Winistorf&gbnummer=&bezeichnung=&erstellungsdatum=&mutationsdatum=",
standorteGemeinde
standorteGemeinde,
);
// Open bohrung edit form
cy.visit("/");
Expand Down
12 changes: 6 additions & 6 deletions src/ClientApp/cypress/e2e/home.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ describe("Home page tests", () => {

cy.intercept(
"/standort?gemeinde=Heinrichswil-Winistorf&gbnummer=&bezeichnung=&erstellungsdatum=&mutationsdatum=",
standorteGemeinde
standorteGemeinde,
);

cy.visit("/");
Expand All @@ -29,7 +29,7 @@ describe("Home page tests", () => {
const gbnummer = "h5r0wdwsz6ef39zb2d31a0zfou7i4tdguvddcklb";
cy.intercept(
`/standort?gemeinde=&gbnummer=${gbnummer}&bezeichnung=&erstellungsdatum=&mutationsdatum=`,
standorteGbnummer
standorteGbnummer,
);
cy.visit("/");
cy.get("div[name=home-container]").should("not.contain", "Standorte");
Expand All @@ -42,7 +42,7 @@ describe("Home page tests", () => {
it("Show search result box if search for bezeichnung", function () {
cy.intercept(
`/standort?gemeinde=&gbnummer=&bezeichnung=Rustic%20Wooden%20Keyboard&erstellungsdatum=&mutationsdatum=`,
standorteBezeichnung
standorteBezeichnung,
);
cy.visit("/");
cy.get("div[name=home-container]").should("not.contain", "Standorte");
Expand All @@ -65,7 +65,7 @@ describe("Home page tests", () => {

cy.intercept(
"/standort?gemeinde=Heinrichswil-Winistorf&gbnummer=&bezeichnung=&erstellungsdatum=&mutationsdatum=",
standorteGemeinde
standorteGemeinde,
);

cy.visit("/");
Expand Down Expand Up @@ -94,7 +94,7 @@ describe("Home page tests", () => {

cy.intercept(
"/standort?gemeinde=Heinrichswil-Winistorf&gbnummer=&bezeichnung=&erstellungsdatum=&mutationsdatum=",
standorteGemeinde
standorteGemeinde,
);
cy.intercept("DELETE", "/standort*", {
statusCode: 200,
Expand All @@ -119,7 +119,7 @@ describe("Home page tests", () => {
cy.intercept("/standort", standorte);
cy.intercept(
"/standort?gemeinde=Heinrichswil-Winistorf&gbnummer=&bezeichnung=&erstellungsdatum=&mutationsdatum=",
standorteGemeinde
standorteGemeinde,
);
const standort = standorteGemeinde.find((s) => s.bezeichnung === "Generic Steel Pants");
cy.intercept("/standort/" + standort.id, standort);
Expand Down
2 changes: 1 addition & 1 deletion src/ClientApp/cypress/e2e/inputform.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe("Input form tests", () => {
cy.intercept("/standort/" + standort.id, standort);
cy.intercept(
"/standort?gemeinde=Heinrichswil-Winistorf&gbnummer=&bezeichnung=&erstellungsdatum=&mutationsdatum=",
standorteGemeinde
standorteGemeinde,
);
cy.intercept("/bohrung/" + 41063, bohrung);

Expand Down
2 changes: 1 addition & 1 deletion src/ClientApp/cypress/e2e/schichtenform.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe("Input form tests", () => {
cy.intercept("/standort/" + standort.id, standort);
cy.intercept(
"/standort?gemeinde=Heinrichswil-Winistorf&gbnummer=&bezeichnung=&erstellungsdatum=&mutationsdatum=",
standorteGemeinde
standorteGemeinde,
);
cy.intercept("/bohrung/" + 41063, bohrung);

Expand Down
2 changes: 1 addition & 1 deletion src/ClientApp/cypress/e2e/vorkommnisform.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe("Input form tests", () => {
cy.intercept("/standort/" + standort.id, standort);
cy.intercept(
"/standort?gemeinde=Heinrichswil-Winistorf&gbnummer=&bezeichnung=&erstellungsdatum=&mutationsdatum=",
standorteGemeinde
standorteGemeinde,
);
cy.intercept("/bohrung/" + 41063, bohrung);

Expand Down
Loading

0 comments on commit 4d52b71

Please sign in to comment.