Skip to content

Commit

Permalink
Make tests async where possible
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenvanvliet committed Jan 15, 2021
1 parent 80780bb commit 8f8ca3f
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion test/absinthe/schema/experimental_test.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule Absinthe.Schema.ExperimentalTest do
use Absinthe.Case
use Absinthe.Case, async: true

@moduletag :experimental

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule Absinthe.Schema.Notation.Experimental.ArgumentTest do
use Absinthe.Case
use Absinthe.Case, async: true
import ExperimentalNotationHelpers

@moduletag :experimental
Expand Down
2 changes: 1 addition & 1 deletion test/absinthe/schema/notation/experimental/field_test.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule Absinthe.Schema.Notation.Experimental.FieldTest do
use Absinthe.Case
use Absinthe.Case, async: true
import ExperimentalNotationHelpers

@moduletag :experimental
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule Absinthe.Schema.Notation.Experimental.ImportFieldsTest do
use Absinthe.Case
use Absinthe.Case, async: true
import ExperimentalNotationHelpers

@moduletag :experimental
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule Absinthe.Schema.Notation.Experimental.ImportSdlTest do
use Absinthe.Case
use Absinthe.Case, async: true
import ExperimentalNotationHelpers

@moduletag :experimental
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule Absinthe.Schema.Notation.Experimental.ImportTypesTest do
use Absinthe.Case
use Absinthe.Case, async: true

@moduletag :experimental

Expand Down
2 changes: 1 addition & 1 deletion test/absinthe/schema/notation/experimental/object_test.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule Absinthe.Schema.Notation.Experimental.ObjectTest do
use Absinthe.Case
use Absinthe.Case, async: true
import ExperimentalNotationHelpers

@moduletag :experimental
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule Absinthe.Schema.Notation.Experimental.ResolveTest do
use Absinthe.Case
use Absinthe.Case, async: true
import ExperimentalNotationHelpers

@moduletag :experimental
Expand Down
2 changes: 1 addition & 1 deletion test/absinthe/schema/sdl_render_test.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule Absinthe.Schema.SdlRenderTest do
use ExUnit.Case
use ExUnit.Case, async: true

defmodule SdlTestSchema do
use Absinthe.Schema
Expand Down
2 changes: 1 addition & 1 deletion test/absinthe/schema/type_system_directive_test.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
defmodule Absinthe.Schema.TypeSystemDirectiveTest do
use ExUnit.Case
use ExUnit.Case, async: true

defmodule WithTypeSystemDirective do
use Absinthe.Schema.Prototype
Expand Down

0 comments on commit 8f8ca3f

Please sign in to comment.