[tests] Turbo should use full logs when listing tests (#9172)

In PR #9168, the output mode was changed so it doesnt print logs when the result is cached. However, we need the output for the dry run where we list all relevant tests. So the flag was added to that one script only to avoid this skipped problem:

![skipped](https://user-images.githubusercontent.com/229881/210870102-a597d1b9-f007-41ba-8e1d-f53aa765b740.png)
This commit is contained in:
Steven
2023-01-05 15:12:59 -05:00
committed by GitHub
parent ada1ad3840
commit 6215c516e7

View File

@@ -14,7 +14,14 @@ async function getChunkedTests() {
const rootPath = path.resolve(__dirname, '..');
const dryRunText = (
await turbo([`run`, ...scripts, `--cache-dir=.turbo`, '--', '--listTests'])
await turbo([
`run`,
...scripts,
`--cache-dir=.turbo`,
'--output-logs=full',
'--',
'--listTests',
])
).toString('utf8');
/**