We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dc75d3 commit bcc5af3Copy full SHA for bcc5af3
test/test_board.py
@@ -467,6 +467,14 @@ def test_board_details(run_command):
467
for programmer in gold_board_details["programmers"]:
468
assert programmer in result["programmers"]
469
470
+ # Download samd core pinned to 1.8.8
471
+ run_command("core install arduino:[email protected]")
472
+
473
+ result = run_command("board details -b arduino:samd:nano_33_iot --format json")
474
+ assert result.ok
475
+ result = json.loads(result.stdout)
476
+ assert result["debugging_supported"] == True
477
478
479
# old `arduino-cli board details` did not need -b <fqbn> flag to work
480
def test_board_details_old(run_command):
0 commit comments