diff --git a/cli/types/cypress.d.ts b/cli/types/cypress.d.ts index 62bdffaa9d87..07b95291c365 100644 --- a/cli/types/cypress.d.ts +++ b/cli/types/cypress.d.ts @@ -3106,7 +3106,7 @@ declare namespace Cypress { * disabled by default. Enabling this option allows for navigating between subdomains in * the same test without the use of cy.origin(). Setting document.domain is deprecated in Chrome. * Enabling this may result in incompatibilities with sites that leverage origin-agent-cluster - * headers. Enabling this when a browser does not support setting document.domain will not result + * headers. Enabling this when a browser does not support setting document.domain will not result * in the browser allowing document.domain to be set. In these cases, this configuration option * must be set to false, to allow cy.origin() to be used on subdomains. * @default false diff --git a/packages/driver/cypress/e2e/e2e/origin/cookie_misc.cy.ts b/packages/driver/cypress/e2e/e2e/origin/cookie_misc.cy.ts index 9bbe949a0f7d..e6d9259f279d 100644 --- a/packages/driver/cypress/e2e/e2e/origin/cookie_misc.cy.ts +++ b/packages/driver/cypress/e2e/e2e/origin/cookie_misc.cy.ts @@ -251,7 +251,7 @@ describe('misc cookie tests', { browser: '!webkit' }, () => { cy.wait('@cookiedRequest').then(({ request }) => { // in Cypress <= 13, this should be (which is wrong) - // expect(req['headers']['cookie']).to.equal('foo1=bar1') + // expect(req['headers']['cookie']).to.equal('foo1=bar1') // in Cypress 14, this should be (which is correct) expect(request.headers.cookie).to.equal(cookie)