1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/tests/unit_node/testdata/worker_module/cjs-file.cjs
2024-03-20 09:12:22 +05:30

23 lines
442 B
JavaScript

const { add } = require("./other_cjs_file.cjs");
const missing_toplevel_async = async () => {
return new Promise((resolve) => {
setTimeout(() => {
resolve;
}, 500);
});
};
async function main() {
/// async code doesn't seem to work within this CJS wrapper :(
//const p = await missing_toplevel_async();
const sum = add(2, 3);
if (sum != 5) {
throw ("Bad calculator!");
}
postMessage("hallo");
}
main();