Skip to content

Commit

Permalink
test: adicionando testes assíncronos
Browse files Browse the repository at this point in the history
  • Loading branch information
tiago154 committed Feb 26, 2021
1 parent 737843c commit d9c34fd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,5 @@ jobs:
- name: Run Coveralls
run: mix coveralls.github
env:
DB_HOST: postgres
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion test/rocketpay/numbers_test.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule Rocketpay.NumbersTest do
use ExUnit.Case
use ExUnit.Case, async: true

alias Rocketpay.Numbers

Expand Down
2 changes: 1 addition & 1 deletion test/rocketpay/users/create_test.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule Rocketpay.Users.CreateTest do
use Rocketpay.DataCase
use Rocketpay.DataCase, async: true

alias Rocketpay.User
alias Rocketpay.Users.Create
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule RocketpayWeb.AccountsControllerTest do
use RocketpayWeb.ConnCase
use RocketpayWeb.ConnCase, async: true

alias Rocketpay.{Account, User}

Expand Down
2 changes: 1 addition & 1 deletion test/rocketpay_web/views/users_view_test.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule RocketpayWeb.UsersViewTest do
use RocketpayWeb.ConnCase
use RocketpayWeb.ConnCase, async: true

import Phoenix.View

Expand Down

0 comments on commit d9c34fd

Please sign in to comment.