Skip to content

Commit ddfe403

Browse files
authored
improve: expose projectRoot setting in createTestContext (#1324)
* improve: expose projectRoot setting in createTestContext * chore(docs): update CreateTestContextOptions * chore(jsdoc): document projectRoot param for createTestContext
1 parent 75ec733 commit ddfe403

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

src/testing/testing.ts

+11-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export interface TestContextCore {
2424
}
2525

2626
declare global {
27-
interface NexusTestContextApp extends TestContextAppCore {}
27+
interface NexusTestContextApp extends TestContextAppCore { }
2828

2929
interface NexusTestContextRoot {
3030
app: NexusTestContextApp
@@ -40,6 +40,14 @@ export interface CreateTestContextOptions {
4040
* You should typically use this if you're using `nexus dev --entrypoint` or `nexus build --entrypoint`.
4141
*/
4242
entrypointPath?: string
43+
/**
44+
* Nexus usually determines the project root by the first `package.json` found while traversing up the file system.
45+
* In some cases, e.g. usage in a monorepo, this might not always be correct.
46+
* For those cases, you can specify the `projectRoot` manually.
47+
*
48+
* Example: `await createTestContext({ projectRoot: path.join(__dirname, '../..') })`
49+
*/
50+
projectRoot?: string
4351
}
4452

4553
/**
@@ -68,15 +76,15 @@ export async function createTestContext(opts?: CreateTestContextOptions): Promis
6876
process.env.NEXUS_STAGE = 'dev'
6977

7078
// todo figure out some caching system here, e.g. imagine jest --watch mode
71-
const layout = rightOrFatal(await Layout.create({ entrypointPath: opts?.entrypointPath }))
79+
const layout = rightOrFatal(await Layout.create({ entrypointPath: opts?.entrypointPath, projectRoot: opts?.projectRoot }))
7280
const pluginManifests = await PluginWorktime.getUsedPlugins(layout)
7381
const randomPort = await getPort({ port: getPort.makeRange(4000, 6000) })
7482
const privateApp = app as PrivateApp
7583

7684
const forcedServerSettings = {
7785
port: randomPort,
7886
playground: false, // Disable playground during tests
79-
startMessage() {}, // Make server silent
87+
startMessage() { }, // Make server silent
8088
}
8189

8290
// todo remove these settings hacks once we have https://github.com/graphql-nexus/nexus/issues/758

website/content/040-api/02-nexus-testing.mdx

+8
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,14 @@ export interface CreateTestContextOptions {
5454
* You should typically use this if you're using `nexus dev --entrypoint` or `nexus build --entrypoint`.
5555
*/
5656
entrypointPath?: string
57+
/**
58+
* Nexus usually determines the project root by the first `package.json` found while traversing up the file system.
59+
* In some cases, e.g. usage in a monorepo, this might not always be correct.
60+
* For those cases, you can specify the `projectRoot` manually.
61+
*
62+
* Example: `await createTestContext({ projectRoot: path.join(__dirname, '../..') })`
63+
*/
64+
projectRoot?: string
5765
}
5866
```
5967

0 commit comments

Comments
 (0)