We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jest's default testing environment is jsdom, however when the tests are run for either asm.js or wasm in this environment using
yarn test:asm
OR
yarn test:wasm
errors such as the below are reported.
asm
TypeError: abort is not a function
wasm
RuntimeError: unreachable
To reproduce remove the testEnvironment: "node" from ./jest.config.js and run the tests.
testEnvironment: "node"
./jest.config.js
The text was updated successfully, but these errors were encountered:
No branches or pull requests
jest's default testing environment is jsdom, however when the tests are run for either asm.js or wasm in this environment using
OR
errors such as the below are reported.
asm
wasm
To reproduce remove the
testEnvironment: "node"
from./jest.config.js
and run the tests.The text was updated successfully, but these errors were encountered: