We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db91427 commit 46ca29cCopy full SHA for 46ca29c
README.md
@@ -333,3 +333,20 @@ Because:
333
#### How can I find the core/FQBN for a board?
334
335
See: https://github.com/arduino/arduino-cli#step-4-find-and-install-the-right-core
336
+
337
+# Testing
338
339
+Currently Unit and Integration test are available for launch in 2 ways:
340
341
+1. classic `go test ./...` to launch both unit and integration test
342
343
+2. via [task](https://taskfile.dev) that includes the following options:
344
345
+```
346
+* build: Build the project
347
+* test: Run the full testsuite
348
+* test-integration: Run integration tests only
349
+* test-unit: Run unit tests only
350
351
352
+For Example to launch unit tests only run: `task test-unit`
0 commit comments