From 88e314ae044b169ed9d259b6e1abb131e2fc5e03 Mon Sep 17 00:00:00 2001 From: Ed S Date: Tue, 22 Sep 2020 16:19:10 +0100 Subject: [PATCH] Remove stray linebreak at top of file --- docs/rules/no-setup-in-describe.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/rules/no-setup-in-describe.md b/docs/rules/no-setup-in-describe.md index ebb72af..7950915 100644 --- a/docs/rules/no-setup-in-describe.md +++ b/docs/rules/no-setup-in-describe.md @@ -1,4 +1,3 @@ - # Disallow setup in describe blocks (no-setup-in-describe) Setup for test cases in mocha should be done in `before`, `beforeEach`, or `it` blocks. Unfortunately there is nothing stopping you from doing setup directly inside a `describe` block.