How to stop test output from automatically displaying in terminal pane

I’m using the TestItemRunner.jl package to do my testing in VSCode.

The terminal panel recently started switching to another terminal to display the test output every time I run tests. I don’t want it to do this and did not knowingly set this to happen.

This is irritating because I have to manually switch back to the REPL terminal every time.

Anybody know how to turn this off?

julia> versioninfo()
Julia Version 1.9.2
Commit e4ee485e90 (2023-07-05 09:39 UTC)
Platform Info:
  OS: Windows (x86_64-w64-mingw32)
  CPU: 32 × AMD Ryzen 9 7950X 16-Core Processor
  WORD_SIZE: 64
  LIBM: libopenlibm
  LLVM: libLLVM-14.0.6 (ORCJIT, znver3)
  Threads: 1 on 32 virtual cores
Environment:
  JULIA_EDITOR = code.cmd
  JULIA_NUM_THREADS = 1

Julia language extension for VSCode 1.47.2

This is the option:

Something on Settings -> Features -> Testing

(or search for “Open Testing” on the settings)

That fixed it, thanks.