blob: b51a7be6b4f1293af59686fe3e57801d2e096c35 [file] [log] [blame]
import Cocoa from "./module-src-dynamic-cocoa.js";
var cocoa = new Cocoa();
debug("Module execution is confined in the module environment.");
shouldBeEqualToString("typeof cocoa", "undefined");
window.exportedCocoa = cocoa;
shouldBeEqualToString("typeof exportedCocoa", "object");
shouldBeEqualToString("exportedCocoa.taste()", "nice");
finishJSTest();