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
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,4 @@

> git add -A && git commit -m 'second'
> printf 'eval("code");\n' > src/fail.js && git add src/fail.js
[1]> vp staged # should fail when staged .js file has lint errors
[STARTED] Backing up original state...
[1]> vp staged > /dev/null 2>&1 # should fail when staged .js file has lint errors
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"ignoredPlatforms": ["win32"],
"commands": [
{ "command": "git init", "ignoreOutput": true },
{ "command": "git add -A && git commit -m 'init'", "ignoreOutput": true },
Expand All @@ -12,6 +13,9 @@
"command": "printf 'eval(\"code\");\\n' > src/fail.js && git add src/fail.js",
"ignoreOutput": true
},
"vp staged # should fail when staged .js file has lint errors"
{
"command": "vp staged > /dev/null 2>&1 # should fail when staged .js file has lint errors",
"ignoreOutput": true
}
]
}
Loading