complement/tests/msc3890/main_test.go
kegsay f5a143c493
Standardise entry points for Complement tests (#669)
* Always use the helpers package for the entry point for tests

* Move test main/package to top-level complement package

This reads much more nicely and clearly shows the entry point for
testing with complement.

* Remove Deploy proxy function as it is useless

* Use complement.Deploy everywhere

This ensures consistency with in-repo and out-of-repo tests, which
need to refer to the complement package.

* Fix helpful error messages when TestMain isn't called
2023-10-12 16:41:13 +01:00

11 lines
142 B
Go

package tests
import (
"testing"
"github.com/matrix-org/complement"
)
func TestMain(m *testing.M) {
complement.TestMain(m, "msc3890")
}