I need to run specific test code in my Quasar project without running all tests. I've tried using the following commands, but they still run all test files.
quasar test --unit jest -t "demo/demo.spec.js"
quasar test --unit jest --spec "demo/demo.spec.js"
quasar test --unit jest -i "demo/demo.spec.js"
Any suggestions on what steps I should take next?