Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasLYang committed Oct 21, 2024
1 parent 0f263a6 commit 180aff6
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions turborepo-tests/integration/tests/trace-double-symlink.t
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,23 @@ Setup
$ . ${TESTDIR}/../../helpers/setup_integration_test.sh oxc_repro

$ ${TURBO} query "query { file(path: \"./index.js\") { path dependencies { files { items { path } } errors { items { message import } } } } }"
WARNING query command is experimental and may change in the future
{
"data": {
"file": {
"path": "index.js",
"dependencies": {
"files": {
"items": [
{
"path": "nm/index.js"
}
]
},
"errors": {
"items": []
}
}
}
}
}

0 comments on commit 180aff6

Please sign in to comment.