uniform-team / Uniform-Validation-Language

A logic language to simplify and improve online form validation.
Apache License 2.0
1 stars 0 forks source link

Add ES6 Import Functionality to Test Suite #30

Closed dgp1130 closed 8 years ago

dgp1130 commented 8 years ago

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("...", () => { ... });
dgp1130 commented 8 years ago

Duplicate of #34.