Files
self c1f4339dde refactor: move Aether into TribeOne plugin namespace
Use TribeOne.TribesPlugin.Aether modules throughout the plugin and expose chat@1 from the entry module for capability-based consumers.
2026-05-26 01:13:28 +02:00

12 lines
376 B
Elixir

defmodule TribeOne.TribesPlugin.Aether.MarmotAssetsTest do
use ExUnit.Case, async: true
@package_path Path.expand("../../assets/package.json", __DIR__)
test "pins marmot-ts to the selected client version" do
package = @package_path |> File.read!() |> JSON.decode!()
assert get_in(package, ["dependencies", "@internet-privacy/marmot-ts"]) == "0.5.1"
end
end