-
Notifications
You must be signed in to change notification settings - Fork 481
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #332 from skovy/skovy/support-parsers-in-test-utils
Support different parsers in the test utils
- Loading branch information
Showing
4 changed files
with
34 additions
and
11 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
sample/__testfixtures__/typescript/reverse-identifiers.input.ts
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const firstWord = 'Hello '; | ||
const secondWord = 'world'; | ||
const message = firstWord + secondWord; | ||
|
||
const getMessage = (): string => message |
5 changes: 5 additions & 0 deletions
5
sample/__testfixtures__/typescript/reverse-identifiers.output.ts
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const droWtsrif = 'Hello '; | ||
const droWdnoces = 'world'; | ||
const egassem = droWtsrif + droWdnoces; | ||
|
||
const egasseMteg = (): string => egassem |
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