Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasLYang committed Sep 19, 2024
1 parent 26e893a commit 0856614
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion turborepo-tests/integration/tests/turbo-trace.t
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ Setup
},
{
"path": "foo.js"
},
{
"path": "node_modules/repeat-string/index.js"
}
]
}
Expand All @@ -41,5 +44,17 @@ Setup
}
$ ${TURBO} query "query { file(path: \"circular.ts\") { path, dependencies { path } } }"
WARNING query command is experimental and may change in the future
{
"data": {
"file": {
"path": "circular.ts",
"dependencies": [
{
"path": "circular2.ts"
}
]
}
}
}
$ ${TURBO} query "query { file(path: \"main.ts\") { path, dependencies(traceNodeModules: false) { path } } }"

0 comments on commit 0856614

Please sign in to comment.