-
Notifications
You must be signed in to change notification settings - Fork 362
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: stringify helpers only if used
- Loading branch information
Showing
10 changed files
with
72 additions
and
1,376 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,35 @@ | ||
exports[ | ||
'SchemaUtils Selectors selectorToPElementSelector should convert .cls > div #id 1' | ||
] = ` | ||
exports['SchemaUtils Selectors selectorToPElementSelector should convert .cls > div #id 1'] = ` | ||
.cls > div #id | ||
`; | ||
` | ||
|
||
exports[ | ||
'SchemaUtils Selectors selectorToPElementSelector should convert .cls > div #id,.cls > div #id 1' | ||
] = ` | ||
exports['SchemaUtils Selectors selectorToPElementSelector should convert .cls > div #id,.cls > div #id 1'] = ` | ||
.cls > div #id >>>> .cls > div #id | ||
`; | ||
` | ||
|
||
exports[ | ||
'SchemaUtils Selectors selectorToPElementSelector should convert text/my text ("my text") 1' | ||
] = ` | ||
exports['SchemaUtils Selectors selectorToPElementSelector should convert text/my text ("my text") 1'] = ` | ||
::-p-text(my text \\(\\"my text\\"\\)) | ||
`; | ||
` | ||
|
||
exports[ | ||
'SchemaUtils Selectors selectorToPElementSelector should convert text/my text ("my text"),aria/Test my test[role="button"] 1' | ||
] = ` | ||
exports['SchemaUtils Selectors selectorToPElementSelector should convert text/my text ("my text"),aria/Test my test[role="button"] 1'] = ` | ||
::-p-text(my text \\(\\"my text\\"\\)) >>>> ::-p-aria(Test my test[role=\\"button\\"]) | ||
`; | ||
` | ||
|
||
exports[ | ||
'SchemaUtils Selectors selectorToPElementSelector should convert text/my) 1' | ||
] = ` | ||
exports['SchemaUtils Selectors selectorToPElementSelector should convert text/my) 1'] = ` | ||
::-p-text(my\\)) | ||
`; | ||
` | ||
|
||
exports[ | ||
'SchemaUtils Selectors selectorToPElementSelector should convert text/my() 1' | ||
] = ` | ||
exports['SchemaUtils Selectors selectorToPElementSelector should convert text/my() 1'] = ` | ||
::-p-text(my\\(\\)) | ||
`; | ||
` | ||
|
||
exports[ | ||
'SchemaUtils Selectors selectorToPElementSelector should convert text/" 1' | ||
] = ` | ||
exports['SchemaUtils Selectors selectorToPElementSelector should convert text/" 1'] = ` | ||
::-p-text(\\") | ||
`; | ||
` | ||
|
||
exports[ | ||
"SchemaUtils Selectors selectorToPElementSelector should convert text/' 1" | ||
] = ` | ||
exports['SchemaUtils Selectors selectorToPElementSelector should convert text/\' 1'] = ` | ||
::-p-text(\\') | ||
`; | ||
` | ||
|
||
exports[ | ||
'SchemaUtils Selectors selectorToPElementSelector should convert xpath///*[@id="id"] 1' | ||
] = ` | ||
exports['SchemaUtils Selectors selectorToPElementSelector should convert xpath///*[@id="id"] 1'] = ` | ||
::-p-xpath(//*[@id=\\"id\\"]) | ||
`; | ||
` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.