Skip to content

Commit 2ff56a1

Browse files
authored
docs: update specs example with non-legacy directory/filename (#861)
1 parent 4056af4 commit 2ff56a1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -281,15 +281,15 @@ jobs:
281281
- name: Cypress run
282282
uses: cypress-io/github-action@v5
283283
with:
284-
spec: cypress/integration/spec1.js
284+
spec: cypress/e2e/spec1.cy.js
285285
```
286286

287287
You can pass multiple specs and wild card patterns using multi-line parameter, see [example-config.yml](./.github/workflows/example-config.yml):
288288

289289
```yml
290290
spec: |
291-
cypress/integration/spec-a.js
292-
cypress/**/*-b.js
291+
cypress/e2e/spec-a.cy.js
292+
cypress/**/*-b.cy.js
293293
```
294294

295295
For more information, visit [the Cypress command-line docs](https://on.cypress.io/command-line#cypress-run-env-lt-env-gt).

0 commit comments

Comments
 (0)