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 655c2ee commit f2f5c35Copy full SHA for f2f5c35
test-app/app/src/main/assets/app/tests/testESModules.mjs
@@ -44,7 +44,7 @@ async function runESModuleTests() {
44
console.log("\n--- Test 1: Loading .mjs files as ES modules ---");
45
try {
46
const moduleExports = await import("~/testSimpleESModule.mjs");
47
- if (moduleExports && moduleExports !== null) {
+ if (moduleExports) {
48
recordPass("Module exports:", JSON.stringify(moduleExports));
49
} else {
50
recordFailure("ES Module loaded but exports are null");
0 commit comments