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 7449a10 commit 780a024Copy full SHA for 780a024
Dangerfile
@@ -11,5 +11,5 @@ warn("PR is classed as Work in Progress") if github.pr_title.include?("[WIP]")
11
warn("Big PR") if git.lines_of_code > 500
12
13
# Don't let testing shortcuts get into main by accident
14
-raise("fdescribe left in tests") if `grep -r fdescribe specs/`.length > 1
15
-raise("fit left in tests") if `grep -r fit specs/`.length > 1
+raise("fdescribe left in tests") if %x(grep -r fdescribe specs/).length > 1
+raise("fit left in tests") if %x(grep -r fit specs/).length > 1
0 commit comments