Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Note: after extracting the tests, this preprocessor sets [@cypress/fiddle](https

## Debugging

To see log messages from this module, run with `DEBUG=cypress-markdown-preprocessor` environment variable
To see log messages from this module, run with `DEBUG=cypress-markdown-preprocessor` environment variable. To see ever more debug messages enable the verbose logging `DEBUG=cypress-markdown-preprocessor,cypress-markdown-preprocessor:verbose`.

## Small print

Expand Down
2 changes: 1 addition & 1 deletion cypress/integration/spec.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Cypress Markdown spec

<!-- fiddle Example -->
<!-- fiddle First example -->
```html
<div id="hello">Hello</div>
```
Expand Down
278 changes: 224 additions & 54 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
"version": "0.0.0-development",
"description": "Use Markdown files as Cypress specs",
"main": "src/index.js",
"files": ["src"],
"files": [
"src"
],
"scripts": {
"cy:open": "cypress open",
"cy:run": "cypress run",
Expand All @@ -29,6 +31,7 @@
"@cypress/browserify-preprocessor": "3.0.1",
"@cypress/fiddle": "1.19.2",
"@textlint/markdown-to-ast": "6.2.5",
"chokidar": "3.5.1",
"common-tags": "1.8.0",
"debug": "4.3.1",
"temp-write": "4.0.0"
Expand Down
3 changes: 3 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
],
"excludePackagePatterns": [
"cypress",
"chokidar",
"temp-write",
"@textlint/markdown-to-ast",
"@cypress/fiddle",
"semantic-release"
],
Expand Down
Loading