Skip to content

Commit

Permalink
wire up coverage and add stub test
Browse files Browse the repository at this point in the history
  • Loading branch information
panentheos committed Mar 29, 2024
1 parent 823e2cf commit cb04682
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ defmodule Watts.MixProject do
version: "0.1.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps()
deps: deps(),
test_coverage: [tool: LcovEx]
]
end

Expand Down
7 changes: 7 additions & 0 deletions test/web_api_test.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
defmodule WebApiTest do
use ExUnit.Case, async: true

test "stub" do
assert true
end
end

0 comments on commit cb04682

Please sign in to comment.