@@ -24,7 +24,7 @@ export interface TestContextCore {
24
24
}
25
25
26
26
declare global {
27
- interface NexusTestContextApp extends TestContextAppCore { }
27
+ interface NexusTestContextApp extends TestContextAppCore { }
28
28
29
29
interface NexusTestContextRoot {
30
30
app : NexusTestContextApp
@@ -40,6 +40,14 @@ export interface CreateTestContextOptions {
40
40
* You should typically use this if you're using `nexus dev --entrypoint` or `nexus build --entrypoint`.
41
41
*/
42
42
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
43
51
}
44
52
45
53
/**
@@ -68,15 +76,15 @@ export async function createTestContext(opts?: CreateTestContextOptions): Promis
68
76
process . env . NEXUS_STAGE = 'dev'
69
77
70
78
// 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 } ) )
72
80
const pluginManifests = await PluginWorktime . getUsedPlugins ( layout )
73
81
const randomPort = await getPort ( { port : getPort . makeRange ( 4000 , 6000 ) } )
74
82
const privateApp = app as PrivateApp
75
83
76
84
const forcedServerSettings = {
77
85
port : randomPort ,
78
86
playground : false , // Disable playground during tests
79
- startMessage ( ) { } , // Make server silent
87
+ startMessage ( ) { } , // Make server silent
80
88
}
81
89
82
90
// todo remove these settings hacks once we have https://github.com/graphql-nexus/nexus/issues/758
0 commit comments