Currently all tests load their modules via accessing the global uniform object. This can clutter and confuse users as well as make mocking difficult. The test suite should be able to use ES6 imports just like production code.
import Scope from "./scope.js"
it("...", () => { ... });
Currently all tests load their modules via accessing the global
uniform
object. This can clutter and confuse users as well as make mocking difficult. The test suite should be able to use ES6 imports just like production code.