-
Notifications
You must be signed in to change notification settings - Fork 470
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resolve Windows FS Issues #810
Changes from all commits
7105b73
8fd101a
bef16e4
d59a702
88027cd
732dee0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,69 +37,6 @@ exports[`client:codegen generates operation IDs for swift files when flag is set | |
}" | ||
`; | ||
|
||
exports[`client:codegen writes TypeScript global types to a custom path when globalTypesFile is set 1`] = ` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why was this removed? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was a result of muddying up, then deleting, and finally regenerating this test snap. The test is skipped, so the snap is obsolete. Side note: doesn't jest normally find these and remove them with Can totally revert this change! |
||
"/* tslint:disable */ | ||
// This file was automatically generated and should not be edited. | ||
|
||
import { SomeEnum } from \\"./../../__foo__/bar\\"; | ||
|
||
// ==================================================== | ||
// GraphQL query operation: SimpleQuery | ||
// ==================================================== | ||
|
||
export interface SimpleQuery { | ||
someEnum: SomeEnum; | ||
} | ||
" | ||
`; | ||
|
||
exports[`client:codegen writes TypeScript global types to a custom path when globalTypesFile is set 2`] = ` | ||
"/* tslint:disable */ | ||
// This file was automatically generated and should not be edited. | ||
|
||
//============================================================== | ||
// START Enums and Input Objects | ||
//============================================================== | ||
|
||
export enum SomeEnum { | ||
bar = \\"bar\\", | ||
foo = \\"foo\\", | ||
} | ||
|
||
//============================================================== | ||
// END Enums and Input Objects | ||
//============================================================== | ||
" | ||
`; | ||
|
||
exports[`client:codegen writes TypeScript types into a __generated__ directory next to sources when no output is set 1`] = ` | ||
"/* tslint:disable */ | ||
// This file was automatically generated and should not be edited. | ||
|
||
// ==================================================== | ||
// GraphQL query operation: SimpleQuery | ||
// ==================================================== | ||
|
||
export interface SimpleQuery { | ||
hello: string; | ||
} | ||
" | ||
`; | ||
|
||
exports[`client:codegen writes TypeScript types into a __generated__ directory next to sources when no output is set 2`] = ` | ||
"/* tslint:disable */ | ||
// This file was automatically generated and should not be edited. | ||
|
||
//============================================================== | ||
// START Enums and Input Objects | ||
//============================================================== | ||
|
||
//============================================================== | ||
// END Enums and Input Objects | ||
//============================================================== | ||
" | ||
`; | ||
|
||
exports[`client:codegen writes exact Flow types when the useFlowExactObjects flag is set 1`] = ` | ||
" | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.