Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fern/products/sdks/guides/testing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Mock server tests are available for TypeScript, Go, Java, and Swift. Configure m
| Language | Configuration | Default |
|----------|---------------|---------|
| TypeScript | [`generateWireTests`](/sdks/generators/typescript/configuration#generatewiretests) | true |
| Go | [`enableWireTests`](/sdks/generators/go/configuration#enablewiretests) | false |
| Go | [`enableWireTests`](/sdks/generators/go/configuration#enablewiretests) | true |
| Java | [`enable-wire-tests`](/sdks/generators/java/configuration#enablewiretests) | false |
| Swift | [`enableWireTests`](/sdks/generators/swift/configuration#enablewiretests) | true |

Expand Down
4 changes: 2 additions & 2 deletions fern/products/sdks/overview/go/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ Specifies the name of the generated client struct. This determines the primary c
Sets the name of the exported client that will be used in code snippets and documentation examples. This is useful for customizing how the client appears in generated documentation.
</ParamField>

<ParamField path="enableWireTests" type="string" default="false" required={false} toc={true}>
When enabled, generates [mock server (wire) tests](/sdks/deep-dives/testing#mock-server-tests) to verify that the SDK sends and receives HTTP requests as expected.
<ParamField path="enableWireTests" type="string" default="true" required={false} toc={true}>
Generates [mock server (wire) tests](/sdks/deep-dives/testing#mock-server-tests) to verify that the SDK sends the correct HTTP requests and correctly handles responses per the API spec. When enabled, Docker is required as a runtime dependency to run the generated tests.
</ParamField>

<ParamField path="importPath" type="string" required={false} toc={true}>
Expand Down