From 180aff6d2511283c3a64d715775f110c85de4e1f Mon Sep 17 00:00:00 2001 From: nicholaslyang Date: Mon, 21 Oct 2024 14:34:10 -0400 Subject: [PATCH] Fix test --- .../integration/tests/trace-double-symlink.t | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/turborepo-tests/integration/tests/trace-double-symlink.t b/turborepo-tests/integration/tests/trace-double-symlink.t index c71a7e717d312..62a7cc360c9ff 100644 --- a/turborepo-tests/integration/tests/trace-double-symlink.t +++ b/turborepo-tests/integration/tests/trace-double-symlink.t @@ -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": [] + } + } + } + } + }