Packages

Multi-surface application runtime for Elixir. One TEA module renders to terminal, browser (LiveView), SSH, and MCP (agents). 30+ widgets, flexbox + CSS grid, AI agent runtime, distributed swarm with CRDTs, time-travel debugging, session recording, sandboxed REPL, and agentic commerce.

Current section

Files

Jump to
raxol lib termbox2_nif test test_helper.exs
Raw

lib/termbox2_nif/test/test_helper.exs

ExUnit.start()
defmodule Termbox2NifTest do
use ExUnit.Case
test "NIF loads successfully" do
IO.puts("Testing Termbox2Nif loading...")
result = :termbox2_nif.tb_init()
IO.puts("tb_init result: #{inspect(result)}")
assert is_integer(result)
end
end