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 21cef88 commit 7606363Copy full SHA for 7606363
docs/rules/padding-around-test-blocks.md
@@ -18,13 +18,13 @@ Examples of **incorrect** code for this rule:
18
19
```js
20
const someText = 'hoge';
21
-test("hoge" () => {});
+test("hoge", () => {});
22
test('foo', () => {});
23
```
24
25
26
27
-it("hoge" () => {});
+it("hoge", () => {});
28
it('foo', () => {});
29
30
@@ -33,15 +33,15 @@ Examples of **correct** code for this rule:
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
0 commit comments