-
Notifications
You must be signed in to change notification settings - Fork 82
/
snippets.json
94 lines (94 loc) · 2.21 KB
/
snippets.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"Insert 'Given' Step": {
"prefix": "Given",
"body": [
"Given ${1:Start to type your Given step here}"
]
},
"Insert 'When' Step": {
"prefix": "When",
"body": [
"When ${1:Start to type your When step here}"
]
},
"Insert 'Then' Step": {
"prefix": "Then",
"body": [
"Then ${1:Start to type your Then step here}"
]
},
"Insert 'But' Step": {
"prefix": "But",
"body": [
"But ${1:Start to type your But step here}"
]
},
"Insert 'And' Step": {
"prefix": "And",
"body": [
"And ${1:Start to type your And step here}"
]
},
"Insert Ability": {
"prefix": "Ability",
"body": [
"Ability: ${1:Ability name}",
"",
" ${2:Ability Description}"
]
},
"Insert Business Need": {
"prefix": "Business Need",
"body": [
"Business Need: ${1:Business Need name}",
"",
" ${2:Business Need Description}"
]
},
"Insert Feature": {
"prefix": "Feature",
"body": [
"Feature: ${1:Feature name}",
"",
" ${2:Feature Description}"
]
},
"Insert Scenario": {
"prefix": "Scenario",
"body": [
"Scenario: ${1:Scenario name}"
]
},
"Insert Example": {
"prefix": "Example",
"body": [
"Example: ${1:Example name}"
]
},
"Insert Rule": {
"prefix": "Rule",
"body": [
"Rule: ${1:Rule name}"
]
},
"Insert Background": {
"prefix": "Background",
"body": [
"Background: ${1:Background name}"
]
},
"Insert Scenario Outline": {
"prefix": "Scenario Outline",
"body": [
"Scenario Outline: ${1:Scenario Outline name}"
]
},
"Insert Examples": {
"prefix": "Examples",
"body": [
"Examples:",
" | ${1:Header 1} | ${2:Header 2} | ${3:Header 3} |",
" | ${4:Value 1} | ${5:Value 2} | ${6:Value 3} |"
]
}
}