diff --git a/tests/e2e/integration/app.starter.spec.js b/tests/e2e/integration/app.starter.spec.js index 301176d8..70c134f0 100644 --- a/tests/e2e/integration/app.starter.spec.js +++ b/tests/e2e/integration/app.starter.spec.js @@ -1,4 +1,4 @@ -describe("Visit home", () => { +describe("Visit Home", () => { it('Have a page title with "Postwoman"', () => { cy.visit("/", { retryOnStatusCodeFailure: true }) .get("title") diff --git a/tests/e2e/integration/feature.url-queries.spec.js b/tests/e2e/integration/feature.url-queries.spec.js index 3481242b..3ce949a4 100644 --- a/tests/e2e/integration/feature.url-queries.spec.js +++ b/tests/e2e/integration/feature.url-queries.spec.js @@ -1,5 +1,5 @@ describe("Authentication", () => { - it(`Change default auth user and pass with url`, () => { + it(`Change default Auth username and password with URL`, () => { cy.visit(`?&auth=Basic Auth&httpUser=foo&httpPassword=bar`, { retryOnStatusCodeFailure: true }) .get('input[name="http_basic_user"]', { timeout: 500 }) .invoke("val") @@ -14,7 +14,7 @@ describe("Authentication", () => { }) }) - it("Enable user and pass at url with toggler", () => { + it("Enable username and password in URL with toggler", () => { cy.visit("/", { retryOnStatusCodeFailure: true }) .get("#auth") .select("Basic Auth") diff --git a/tests/e2e/integration/proxy.spec.js b/tests/e2e/integration/proxy.spec.js index 58316dbd..ea555b3b 100644 --- a/tests/e2e/integration/proxy.spec.js +++ b/tests/e2e/integration/proxy.spec.js @@ -1,18 +1,5 @@ -describe("Proxy disabled - local request", () => { - it("Change default url with query and make a request to local cat api", () => { - cy.seedAndVisit("catapi", "/?url=https://api.thecatapi.com&path=") - .get("#url") - .then(el => expect(el.val() === "https://api.thecatapi.com").to.equal(true)) - .get("#response-details-wrapper", { timeout: 24000 }) - .should("be.visible") - .should($wrapper => { - expect($wrapper).to.contain("FAKE Cat API") - }) - }) -}) - describe("Proxy enabled - external request", () => { - it("Enable the proxy and make a request to the real cat api", () => { + it("Enable proxy and make a GET request to Postwoman API", () => { cy.enableProxy("/?url=https://postwoman.io&path=/.netlify/functions/api") .get("#send") .click() @@ -23,3 +10,16 @@ describe("Proxy enabled - external request", () => { }) }) }) + +describe("Proxy disabled - local request", () => { + it("Change default URL with query and make a request to local Cat API", () => { + cy.seedAndVisit("catapi", "/?url=https://api.thecatapi.com&path=") + .get("#url") + .then(el => expect(el.val() === "https://api.thecatapi.com").to.equal(true)) + .get("#response-details-wrapper") + .should("be.visible") + .should($wrapper => { + expect($wrapper).to.contain("FAKE Cat API") + }) + }) +})