You've already forked tribes-plugin-aether
forked from tribes/tribes-plugin-template
c1f4339dde
Use TribeOne.TribesPlugin.Aether modules throughout the plugin and expose chat@1 from the entry module for capability-based consumers.
12 lines
376 B
Elixir
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
|