UNPKG

can

Version:

MIT-licensed, client-side, JavaScript framework that makes building rich web applications easy.

29 lines (25 loc) 558 B
// summary: // Test whether the require function loads modules as it should in async mode. var dojoConfig = { baseUrl: "../../../../../", async: true, packages: [{ name: "dojo", location: "dojo" }] }; importScripts("../../../../dojo.js", "console.js"); try{ require(["dojo/tests/_base/loader/hostenv_webworkers/strings"], function(strings){ self.postMessage({ type: "testResult", test: "require is working", value: true }); }); }catch(e){ self.postMessage({ type: "testResult", test: "require is working", value: false }); }