-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"Always provide a classes, suites, tests, or testLevel property." when running sfdx force:apex:test:run -l RunLocalTests
on a project with no tests
#282
Comments
Thank you for filing this issue. We appreciate your feedback and will review the issue as soon as possible. Remember, however, that GitHub isn't a mechanism for receiving support under any agreement or SLA. If you require immediate assistance, contact Salesforce Customer Support. |
please uninstall the salesforcedx plugin and try again. That makes a bunch of your CLI commands, including apex, out of date by months.
|
OK, tried that but the result is the same. However, I think the problem might be that the org I'm testing against has no local tests. So it might be a case of needing a clearer error message -- or just accepting the fact that in an org with no tests, running all local tests means running no tests, which is absolutely fine: if I ask you to give me all your Ferraris and you give me zero, that's probably because you don't have any Ferraris ;-) I'll update the issue title and description. |
sfdx force:apex:test:run -l RunLocalTests
on a project with no tests
I'm transferring to the repo that tracks issues for all |
@fransf-wtax I was able to reproduce the error message, but can you provide us a little more detail as to why you would be running this command in an org without tests? (If I omit the |
@randi274 Well in this case I thought the org had tests but it didn't. But the error message tells me I did something wrong on the command line (I didn't specify a test level, test suite, or list of tests) when in fact the "error", if you want to call it that, was that there were no (local) tests on the org. A good error message not only tells the user what's wrong, but also gives some indication as to how to fix it. So I think it just avoids confusion when you tell the user what the actual problem is instead of confusing them by saying they need to specify a test level when they did specify a test level. If I say Hope this helps! |
Thanks for the additional information @fransf-wtax! @smaddox-sf this would be a product question on how we should handle it - this is an error message that we get back from core, so we could provide a check for orgs without tests, handle the error message more politely, or leave it as-is as a somewhat confusing message. |
Summary
SFDX exits with the following error when running
sfdx force:apex:test:run -l RunLocalTests
on a project with no tests:Since
-l
sets thetestLevel
property, the error message is wrong (testLevel
was provided). In the case where there are no local tests andRunLocalTests
is set as test level, the call should just complete without doing anything.Steps To Reproduce:
sfdx force:apex:test:run -l RunLocalTests
in a DX project that has no tests, with the scratch org already created and set as the default username.Expected result
All local tests are run (which is no tests in an org with no local tests).
Actual result
error is returned.
System Information
Additional information
N/A
The text was updated successfully, but these errors were encountered: