|
44 | 44 | 'description': 'Jasmine describe snippet' |
45 | 45 | 'descriptionMoreURL': 'https://jasmine.github.io/api/2.6/global.html#describe' |
46 | 46 | 'body': """ |
47 | | - describe('${1:description}' => { |
| 47 | + describe('${1:description}', () => { |
48 | 48 | ${2:body} |
49 | 49 | }); |
50 | 50 | """ |
|
54 | 54 | 'description': 'Jasmine describe snippet' |
55 | 55 | 'descriptionMoreURL': 'https://jasmine.github.io/api/2.6/global.html#fdescribe' |
56 | 56 | 'body': """ |
57 | | - fdescribe('${1:description}' => { |
| 57 | + fdescribe('${1:description}', () => { |
58 | 58 | ${2:body} |
59 | 59 | }); |
60 | 60 | """ |
|
64 | 64 | 'description': 'Jasmine it snippet' |
65 | 65 | 'descriptionMoreURL': 'https://jasmine.github.io/api/2.6/global.html#fit' |
66 | 66 | 'body': """ |
67 | | - fit('${1:description}' => { |
| 67 | + fit('${1:description}', () => { |
68 | 68 | ${2:body} |
69 | 69 | }, ${3:jasmine.DEFAULT_TIMEOUT_INTERVAL}); |
70 | 70 | """ |
|
74 | 74 | 'description': 'Jasmine it snippet' |
75 | 75 | 'descriptionMoreURL': 'https://jasmine.github.io/api/2.6/global.html#it' |
76 | 76 | 'body': """ |
77 | | - it('${1:description}' => { |
| 77 | + it('${1:description}', () => { |
78 | 78 | ${2:body} |
79 | 79 | }, ${3:jasmine.DEFAULT_TIMEOUT_INTERVAL}); |
80 | 80 | """ |
|
84 | 84 | 'description': 'Jasmine describe snippet' |
85 | 85 | 'descriptionMoreURL': 'https://jasmine.github.io/api/2.6/global.html#xdescribe' |
86 | 86 | 'body': """ |
87 | | - xdescribe('${1:suite}' => { |
| 87 | + xdescribe('${1:suite}', () => { |
88 | 88 | ${2:body} |
89 | 89 | }); |
90 | 90 | """ |
|
94 | 94 | 'description': 'Jasmine it snippet' |
95 | 95 | 'descriptionMoreURL': 'https://jasmine.github.io/api/2.6/global.html#xit' |
96 | 96 | 'body': """ |
97 | | - xit('${1:description}' => { |
| 97 | + xit('${1:description}', () => { |
98 | 98 | ${2:body} |
99 | 99 | }, ${3:jasmine.DEFAULT_TIMEOUT_INTERVAL}); |
100 | 100 | """ |
0 commit comments