(t *testing.T)
| 1746 | } |
| 1747 | |
| 1748 | func TestRouterBindsCount(t *testing.T) { |
| 1749 | app, _ := tests.NewTestApp() |
| 1750 | defer app.Cleanup() |
| 1751 | |
| 1752 | vm := goja.New() |
| 1753 | routerBinds(app, vm, nil) |
| 1754 | |
| 1755 | testBindsCount(vm, "this", 2, t) |
| 1756 | } |
| 1757 | |
| 1758 | func TestRouterBinds(t *testing.T) { |
| 1759 | app, _ := tests.NewTestApp() |
nothing calls this directly
no test coverage detected
searching dependent graphs…