https://github.com/handofgod94/vscode_exunit_formatter
ExUnit formatter for VSCode
https://github.com/handofgod94/vscode_exunit_formatter
elixir exunit test-explorer vscode vscode-extension
Last synced: about 2 months ago
JSON representation
ExUnit formatter for VSCode
- Host: GitHub
- URL: https://github.com/handofgod94/vscode_exunit_formatter
- Owner: HandOfGod94
- License: mit
- Created: 2020-08-22T19:17:27.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-30T12:29:16.000Z (over 5 years ago)
- Last Synced: 2025-06-04T00:24:18.592Z (about 1 year ago)
- Topics: elixir, exunit, test-explorer, vscode, vscode-extension
- Language: Elixir
- Homepage:
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VSCodeExUnitFormatter
[](https://github.com/HandOfGod94/vscode_exunit_formatter/actions?query=workflow%3Apipeline)
[](https://codecov.io/gh/HandOfGod94/vscode_exunit_formatter)
> WIP
## Overview
VSCode Test extension is useful to run and debug tests quickly across any project for any language.
This project aims to format test results in such a way that test adapter can recognize it and thus enables
running tests from VSCode test adapter.
## Dev setup
```sh
# run tests with coverage
mix run --cover
# run credo
mix credo --strict
# create archive
mix do archive.build, archive.install
# to run with test formatter
mix test --formatter VSCodeExUnitFormatter
```
> This reporter has to be used in conjunction with
> [vscode-exunit-test-adapter](https://github.com/HandOfGod94/vscode-exunit-test-adapter)