From 7ee93a00b025530cd6e4f64b262479ccccc7b186 Mon Sep 17 00:00:00 2001 From: soartec-lab Date: Sun, 7 Mar 2021 14:22:41 +0900 Subject: [PATCH] Remove unnecessary explanations. --- docs/testing/cypress.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/docs/testing/cypress.md b/docs/testing/cypress.md index 4e8a14545..c71f4ea08 100644 --- a/docs/testing/cypress.md +++ b/docs/testing/cypress.md @@ -58,18 +58,6 @@ Under the `e2e` folder you now have these files: * `/integration`: All your tests. * Feel free to create tests under subfolders for better organization e.g. `/someFeatureFolder/something.spec.ts`. -## First test -* create a file `/cypress/integration/first.ts` with the following contents: - -```ts -describe('google search', () => { - it('should work', () => { - cy.visit('http://www.google.com'); - cy.get('#lst-ib').type('Hello world{enter}') - }); -}); -``` - ## Running in development Open the cypress IDE using the following command.