Test that expected exceptions are thrown when storing a Wasm Module into a DB. On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self.msIndexedDB || self.OIndexedDB; indexedDB.deleteDatabase(dbname) indexedDB.open(dbname) store = db.createObjectStore('store') Expecting exception from store.add(module, 'key') PASS Exception was thrown. PASS code is DOMException.DATA_CLONE_ERR Exception message: The object can not be cloned. PASS successfullyParsed is true TEST COMPLETE