We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58c7237 commit 9aece71Copy full SHA for 9aece71
test/common.py
@@ -683,8 +683,10 @@ def also_with_modularize(f):
683
@wraps(f)
684
def metafunc(self, modularize, *args, **kwargs):
685
if modularize:
686
+ if self.get_setting('STRICT_JS'):
687
+ self.skipTest('MODULARIZE is not compatible with STRICT_JS')
688
if self.get_setting('WASM_ESM_INTEGRATION'):
- self.skipTest('also_with_modularize is not compatible with WASM_ESM_INTEGRATION')
689
+ self.skipTest('MODULARIZE is not compatible with WASM_ESM_INTEGRATION')
690
self.cflags += ['--extern-post-js', test_file('modularize_post_js.js'), '-sMODULARIZE']
691
f(self, *args, **kwargs)
692
0 commit comments