diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 000000000000..abb4715d21a7 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,12 @@ +version: 2.1 + +jobs: + no_op: + docker: + - image: cimg/base:stable + steps: + - run: echo "no op as GH pages does not need a circle job to deploy. Disregard this job and related workflows..." +workflows: + main: + jobs: + - no_op diff --git a/commands/actions.html b/commands/actions.html index 793858cb95d9..cc6ef6d3345e 100644 --- a/commands/actions.html +++ b/commands/actions.html @@ -82,9 +82,9 @@

.type()

cy.get('.action-email').type('{del}{selectall}{backspace}') // .type() with key modifiers -cy.get('.action-email').type('{alt}{option}') //these are equivalent -cy.get('.action-email').type('{ctrl}{control}') //these are equivalent -cy.get('.action-email').type('{meta}{command}{cmd}') //these are equivalent +cy.get('.action-email').type('{alt}{option}') // these are equivalent +cy.get('.action-email').type('{ctrl}{control}') // these are equivalent +cy.get('.action-email').type('{meta}{command}{cmd}') // these are equivalent cy.get('.action-email').type('{shift}') // Delay each keypress by 0.1 sec @@ -182,7 +182,7 @@

.submit()

To submit a form, use the cy.submit() command.

cy.get('.action-form')
   .find('[type="text"]').type('HALFOFF')
-      
+
 cy.get('.action-form').submit()
 cy.get('.action-form').next().should('contain', 'Your form has been submitted!')
diff --git a/commands/misc.html b/commands/misc.html index 2ecf772dce27..05348dd451c2 100644 --- a/commands/misc.html +++ b/commands/misc.html @@ -123,7 +123,8 @@

cy.exec()

if (Cypress.platform === 'win32') { cy.exec('print cypress.config.js') .its('stderr').should('be.empty') -} else { +} +else { cy.exec('cat cypress.config.js') .its('stderr').should('be.empty') diff --git a/commands/storage.html b/commands/storage.html index a2333bda6413..439af4a15840 100644 --- a/commands/storage.html +++ b/commands/storage.html @@ -141,9 +141,9 @@

cy.getAllLocalStorage() @@ -191,9 +191,9 @@

cy.getAllSessionStorage expect(storageMap).to.deep.equal({ // other origins will also be present if sessionStorage is set on them 'https://example.cypress.io': { - 'prop4': 'cyan', - 'prop5': 'yellow', - 'prop6': 'black', + prop4: 'cyan', + prop5: 'yellow', + prop6: 'black', }, }) }) diff --git a/commands/waiting.html b/commands/waiting.html index 359268a53075..8824e0434aac 100644 --- a/commands/waiting.html +++ b/commands/waiting.html @@ -108,13 +108,13 @@

cy.wait()

-

More information: +

More information: -

+

diff --git a/commands/window.html b/commands/window.html index 175a439c196e..932e7dbfab37 100644 --- a/commands/window.html +++ b/commands/window.html @@ -95,7 +95,6 @@

cy.title()


-