blob: a3eaa1ffe4cc4f98682073c0b11bcc3ea70ada1e [file] [log] [blame]
<html>
<import src="resources/does-not-export.sky" as="hello" />
<import src="../resources/dump-as-text.sky" />
<div id="result">FAIL - Script did not execute</div>
<script>
var result = "FAIL";
if (typeof hello === "object" && Object.keys(hello).length === 0)
result = "PASS";
document.getElementById("result").textContent = result;
</script>
</html>