We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dee86a commit bd9da4cCopy full SHA for bd9da4c
docs/guides/guides/command-line.mdx
@@ -35,26 +35,28 @@ command's documentation.
35
To run a command, you'll need to prefix each command in order to properly locate
36
the cypress executable.
37
38
+(requires npm@5.2.0 or greater)
39
+
40
```
-$(npm bin)/cypress run
41
+npx cypress run
42
43
-...or...
44
+...or by using Yarn...
45
46
-./node_modules/.bin/cypress run
47
+yarn cypress run
48
49
-...or... (requires npm@5.2.0 or greater)
50
+...or...
51
52
-npx cypress run
53
+$(npm bin)/cypress run
54
55
-...or by using Yarn...
56
57
58
-yarn cypress run
59
+./node_modules/.bin/cypress run
60
61
62
You may find it easier to add the cypress command to the `scripts` object in
0 commit comments