From 3508055395f23d0051b316ba31ffd13d65517dab Mon Sep 17 00:00:00 2001 From: AbuHubayb Date: Tue, 17 Jun 2025 15:20:03 +0100 Subject: [PATCH] create a package.json file first --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 371257991c8a..0242c42c770e 100644 --- a/README.md +++ b/README.md @@ -51,14 +51,17 @@ Install Cypress for Mac, Linux, or Windows, then [get started](https://on.cypress.io/install). ```bash +npm init -y npm install cypress --save-dev ``` or ```bash +yarn init -y yarn add cypress --dev ``` or ```bash +pnpm init -y pnpm add cypress --save-dev ```