This release fixes an issue with load order of helper files introduced by switching globbing libraries
Added support for ES modules
- Fixes #150.
- Specs and helpers with names ending in .mjs are loaded as ES modules
(
import("foo.mjs")
). - All other specs and helpers are loaded as CommonJS modules, as before
(
require("foo.js")
). - If using ES modules with Node 10 or 11, run
node --experimental-modules /path/to/jasmine
instead ofjasmine
.
Switch back to just plain glob
for smaller dependency list
- Fixes #162
Remove code related to multiple workers as it never worked in the first place