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 bee66a1 commit 464ba4aCopy full SHA for 464ba4a
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 %x(grep -r fdescribe specs/).length > 1
15
-raise("fit left in tests") if %x(grep -r fit specs/).length > 1
+raise("fdescribe left in tests") if `grep -r fdescribe specs/`.length > 1
+raise("fit left in tests") if `grep -r fit specs/`.length > 1
0 commit comments