This commit is contained in:
José Valim 2021-04-28 14:10:52 +02:00
parent 2792280e3d
commit 5fede30764

View file

@ -172,7 +172,7 @@ defmodule Livebook.Notebook.Welcome do
```elixir ```elixir
ExUnit.start(autorun: false) ExUnit.start(autorun: false)
defmodule MyTest do defmodule MyTest do
use ExUnit.Case, async: true use ExUnit.Case, async: true
@ -180,7 +180,7 @@ defmodule Livebook.Notebook.Welcome do
assert true assert true
end end
end end
ExUnit.run() ExUnit.run()
``` ```