Hi,
Currently there is no support for ES6 Imports, I found this closed issue #133, mentionening that es6 module support will be implemented at one point.
Example:
import * as chaiAsPromised from 'chai-as-promised'; or
import { chaiAsPromised } from 'chai-as-promised';
Actual error:
SyntaxError: The requested module './index.js' does not provide an export named 'default'
❌ Could not import your test module. Check the browser logs or open the browser in debug mode for more information.
Hi, Currently there is no support for ES6 Imports, I found this closed issue #133, mentionening that es6 module support will be implemented at one point.
Example:
import * as chaiAsPromised from 'chai-as-promised';
orimport { chaiAsPromised } from 'chai-as-promised';
Actual error: