***

title: "TestEnvironment"
generated: true
---------------

<GenerationInfo sourceFile="packages/testing/src/create-test-environment.ts" sourceLine="13" packageName="@vendure/testing" />

The return value of [createTestEnvironment](/current/core/reference/typescript-api/testing/create-test-environment#createtestenvironment), containing the test server
and clients for the Shop API and Admin API.

```ts title="Signature"
interface TestEnvironment {
    server: TestServer;
    adminClient: SimpleGraphQLClient;
    shopClient: SimpleGraphQLClient;
}
```

<div className="members-wrapper">

### server

\<MemberInfo kind="property" type={`<a href='/current/core/reference/typescript-api/testing/test-server#testserver'>TestServer</a>`}   />

A Vendure server instance against which GraphQL requests can be made.

### adminClient

\<MemberInfo kind="property" type={`<a href='/current/core/reference/typescript-api/testing/simple-graph-qlclient#simplegraphqlclient'>SimpleGraphQLClient</a>`}   />

A GraphQL client configured for the Admin API.

### shopClient

\<MemberInfo kind="property" type={`<a href='/current/core/reference/typescript-api/testing/simple-graph-qlclient#simplegraphqlclient'>SimpleGraphQLClient</a>`}   />

A GraphQL client configured for the Shop API.

</div>
