Skip to content

Instantly share code, notes, and snippets.

@jakub-g
Last active March 2, 2021 20:54
Show Gist options
  • Save jakub-g/a5b17be90f42fe74d6f980e353e80143 to your computer and use it in GitHub Desktop.
Save jakub-g/a5b17be90f42fe74d6f980e353e80143 to your computer and use it in GitHub Desktop.
Compatibility of javascript test runners with ES modules

Compatibility of JavaScript test runners with "native" ES modules based spec files (import), without additional transpilation and plugins

updated: 2021-03-02

For node-based runners, assuming node or 12.17.0+ or 13.2.0+ (or v12.11.0+ with --experimental-modules command line flag)

mocha (node)

  • .spec.mjs: supported, w/o additional conf
  • .spec.js + "type": "module" in package.json: supported, w/o additional conf

Note: by default mocha looks for specs in /test/ folder.

Support added in mocha 7.1.0 (February 2020)

jasmine (node)

Note: you need to create a jasmine.json file (which by default lives in /spec/ folder); you can use jasmine init

karma (browser)

Not supported yet as of March 2021 (v6.1.1)

Modern Web's @web/test-runner

Other options

esm node package can be used with mocha

Feel invited to add docs of your favorite test runner

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment