@@ -8,7 +8,7 @@ describe("image", () => {
8
8
9
9
it ( "HTTP jpeg image with special and japanese chars" , ( ) => {
10
10
expect (
11
- "[http://example.com/~!@#$%^&*()_+`-={}\\'\"?,.<>|/画像.jpeg]"
11
+ "[http://example.com/~!@#$%^&*()_+`-={}\\'\"?,.<>|/画像.jpeg]" ,
12
12
) . toMatchSnapshotWhenParsing ( { hasTitle : false } ) ;
13
13
} ) ;
14
14
@@ -17,13 +17,13 @@ describe("image", () => {
17
17
[https://example.com/ https://example.com/image.GIF]` ) . toMatchSnapshotWhenParsing (
18
18
{
19
19
hasTitle : false ,
20
- }
20
+ } ,
21
21
) ;
22
22
} ) ;
23
23
24
24
it ( "Image with double image link" , ( ) => {
25
25
expect (
26
- "[https://example.com/forward.png https://example.com/backward.png]"
26
+ "[https://example.com/forward.png https://example.com/backward.png]" ,
27
27
) . toMatchSnapshotWhenParsing ( { hasTitle : false } ) ;
28
28
} ) ;
29
29
@@ -33,29 +33,29 @@ describe("image", () => {
33
33
[https://gyazo.com/0f82099330f378fe4917a1b4a5fe8815/raw]` ) . toMatchSnapshotWhenParsing (
34
34
{
35
35
hasTitle : false ,
36
- }
36
+ } ,
37
37
) ;
38
38
} ) ;
39
39
40
40
it ( "Gyazo image with link" , ( ) => {
41
41
expect ( `[https://gyazo.com/0f82099330f378fe4917a1b4a5fe8815 https://example.com]
42
42
[https://example.com https://gyazo.com/0f82099330f378fe4917a1b4a5fe8815]
43
43
[https://gyazo.com/7057219f5b20ca8afd122945b72453d3 https://gyazo.com/0f82099330f378fe4917a1b4a5fe8815]` ) . toMatchSnapshotWhenParsing (
44
- { hasTitle : false }
44
+ { hasTitle : false } ,
45
45
) ;
46
46
} ) ;
47
47
48
48
it ( "Image with GET parameters" , ( ) => {
49
49
expect (
50
- "[http://example.com/image.png?key1=value1&key2=value2]"
50
+ "[http://example.com/image.png?key1=value1&key2=value2]" ,
51
51
) . toMatchSnapshotWhenParsing ( {
52
52
hasTitle : false ,
53
53
} ) ;
54
54
} ) ;
55
55
56
56
it ( "Direct Gyazo image" , ( ) => {
57
57
expect (
58
- "[https://i.gyazo.com/0f82099330f378fe4917a1b4a5fe8815.png]"
58
+ "[https://i.gyazo.com/0f82099330f378fe4917a1b4a5fe8815.png]" ,
59
59
) . toMatchSnapshotWhenParsing ( { hasTitle : false } ) ;
60
60
} ) ;
61
61
} ) ;
0 commit comments