diff options
author | Wojtek Kosior <koszko@koszko.org> | 2021-12-14 21:40:23 +0100 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2021-12-14 22:06:58 +0100 |
commit | 58fe4c7d806359bed299f74ba56902ab396a6ed1 (patch) | |
tree | 38cc0620fe36c5bd7ef7df7dd9f24d332a51fdee /test/unit/test_indexeddb.py | |
parent | 79446ca52cea0864ebe2540ba774cc386ee2f8bc (diff) | |
download | browser-extension-58fe4c7d806359bed299f74ba56902ab396a6ed1.tar.gz browser-extension-58fe4c7d806359bed299f74ba56902ab396a6ed1.zip |
facilitate broadcasting messages to different execution contexts within the webextension
Diffstat (limited to 'test/unit/test_indexeddb.py')
-rw-r--r-- | test/unit/test_indexeddb.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/unit/test_indexeddb.py b/test/unit/test_indexeddb.py index f1322fb..965f318 100644 --- a/test/unit/test_indexeddb.py +++ b/test/unit/test_indexeddb.py @@ -47,12 +47,13 @@ sample_files_by_hash = dict([[file['hash_key'], file['contents']] def file_ref(file_name): return {'file': file_name, 'hash_key': sample_files[file_name]['hash_key']} +@pytest.mark.get_page('https://gotmyowndoma.in') def test_save_remove_item(execute_in_page, indexeddb_code): """ indexeddb.js facilitates operating on Haketilo's internal database. Verify database operations work properly. """ - execute_in_page(indexeddb_code, page='https://gotmyowndoma.in') + execute_in_page(indexeddb_code) # Don't use Haketilo's default initial data. execute_in_page( '''{ |