Deno

Deno provides a built-in test runner for writing and running tests in both JavaScript and TypeScript. Deno can generate standard format JUnit-style XML files which can be submited to Testfiesta or Testrail using taco truck cli. You just need to install the popular Deno
and install tacotruck cli or use Github action. Check out simple jest 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
Github action
name: deno
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: 🧪 Test
run: deno task test:report
- name: Report Results
uses: testfiesta/tacotruck-action@v1
with:
provider: testfiesta
handle: <handle>
project: <project>
run-name: <run name>
base-url: https://api.testfiesta.com
credentials: ${{ secrets.TESTFIESTA_API_KEY }}
results-path: ./test-results.xml
Last updated