2025-03-18 15:28:35 -03:00
|
|
|
<!DOCTYPE html>
|
2023-12-03 13:50:30 -03:00
|
|
|
<script src="../include.js"></script>
|
|
|
|
|
<script>
|
|
|
|
|
asyncTest(async (done) => {
|
|
|
|
|
const blob = new Blob(["This is some data to be read! 🦬"]);
|
|
|
|
|
const text = await blob.text();
|
|
|
|
|
if (text === "This is some data to be read! 🦬")
|
|
|
|
|
println("PASS");
|
|
|
|
|
else
|
|
|
|
|
println("FAIL");
|
|
|
|
|
done();
|
|
|
|
|
});
|
|
|
|
|
</script>
|