Skip to content

Commit

Permalink
Use async tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrudel committed Jan 5, 2025
1 parent a8ceaea commit d4d1d18
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
3 changes: 1 addition & 2 deletions test/thousand_island/handler_test.exs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
defmodule ThousandIsland.HandlerTest do
# False due to telemetry raciness
use ExUnit.Case, async: false
use ExUnit.Case, async: true

use Machete

Expand Down
2 changes: 1 addition & 1 deletion test/thousand_island/listener_test.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule ThousandIsland.ListenerTest do
use ExUnit.Case, async: false
use ExUnit.Case, async: true
use Machete

alias ThousandIsland.{Listener, ServerConfig}
Expand Down
3 changes: 1 addition & 2 deletions test/thousand_island/server_test.exs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
defmodule ThousandIsland.ServerTest do
# False due to telemetry raciness
use ExUnit.Case, async: false
use ExUnit.Case, async: true

use Machete

Expand Down
3 changes: 1 addition & 2 deletions test/thousand_island/socket_test.exs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
defmodule ThousandIsland.SocketTest do
# False due to telemetry raciness
use ExUnit.Case, async: false
use ExUnit.Case, async: true

use Machete

Expand Down

0 comments on commit d4d1d18

Please sign in to comment.