mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 21:02:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			354 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			354 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <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>
 | 
