Our test infrastructure can't deal with async import()
#1204
Labels
code maintenance
Issues that are not user facing, but are related the technical debt with the code itself
help wanted
Things ready to be worked on by anyone. Issues must include instructions on how to complete the task
ready
Issue has defined requirements. It can be grabbed and worked on
tests
Anything related to tests
In #1203 I'm trying to add a module that uses WebAssembly. WASM modules need to be instantiated asynchronously, so Webpack requires them to be in a code-split async chunk. So you need to use the
import()
function to load such modules.However, our tests don't like the
import()
call: they now fail with the message "Not supported":The text was updated successfully, but these errors were encountered: