Skip to content

Commit a4f4826

Browse files
committed
add query types
1 parent 1fbc3fe commit a4f4826

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.vscode/settings.json

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
"itue",
99
"matc",
1010
"paypal",
11+
"qidf",
12+
"qids",
1113
"qlsq",
1214
"qrc",
1315
"qrcc",

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -216,9 +216,9 @@ All the `░variantBy` cursor start with `getBy` by default, but can be easily c
216216

217217
| Trigger | Result |
218218
| :------- | -------------------------------------------------------- |
219-
| `qtid→` | `screen.░variantByTestId(░)█` |
220-
| `qtidf→` | `screen.░variantByTestId('░Text Match')█` |
221-
| `qtids→` | `screen.░variantByTestId('░ext Matc', {exact: false})█` |
219+
| `qid→` | `screen.░variantByTestId(░)█` |
220+
| `qidf→` | `screen.░variantByTestId('░Text Match')█` |
221+
| `qids→` | `screen.░variantByTestId('░ext Matc', {exact: false})█` |
222222

223223
### Debug
224224

snippets/queries.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -244,21 +244,21 @@
244244
},
245245

246246
"query.TestId": {
247-
"prefix": "qtid",
247+
"prefix": "qid",
248248
"body": [
249249
"screen.${1|getBy,getAllBy,queryBy,queryAllBy,findBy,findByAll|}TestId($2)$0"
250250
],
251251
"description": "TestId query"
252252
},
253253
"query.TestId.full": {
254-
"prefix": "qtidf",
254+
"prefix": "qidf",
255255
"body": [
256256
"screen.${1|getBy,getAllBy,queryBy,queryAllBy,findBy,findByAll|}TestId('${2:Text Match}')$0"
257257
],
258258
"description": "TestId query full string match"
259259
},
260260
"query.TestId.substring": {
261-
"prefix": "qtids",
261+
"prefix": "qids",
262262
"body": [
263263
"screen.${1|getBy,getAllBy,queryBy,queryAllBy,findBy,findByAll|}TestId('${2:ext Matc}', {exact: false})$0"
264264
],

0 commit comments

Comments
 (0)