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 Tacotruck 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/tacotruckSubmit test results
tacotruck testfiesta \
run:submit \
--token testfiesta_... \
--handle orgHandle \
--key projectKey \
--name runName \
--data results-path/*.xmlSupport and Resources
Last updated