ExUnit
ExUnit. Elixir's built-in test framework is ExUnit and it includes everything we need to thoroughly test our code. Before moving on it is important to note that tests are implemented as Elixir scripts so we need to use the . exs file extension. ExUnit can generate standard format JUnit-style XML files which can be submitted to Testfiesta or Testrail using taco truck cli. You just need to check how to test using Exunit
, and install tacotruck cli or use Github action. Check out simple ExUnit example.
Install Tacotruck CLI
$ npm install -g @testfiesta/tacotruck
Submit test results
tacotruck testfiesta \
run:submit \
--token testfiesta_... \
--handle orgHandle \
--key projectKey \
--name runName \
--data results-path/*.xml
Last updated