-
-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running this in Chrome throws "Cannot set property indexedDB of #<Window> which has only a getter" #83
Comments
idk what would be best. I don't see the error you do, at least when doing simple stuff in the browser console. But still, just replacing the variable doesn't work unless I use But I don't know exactly what is implied by using this other way of defining a variable, might it cause some other problems? Feels like if the browser is not letting you overwrite a variable there may be a good reason... Also just for my curiosity, why do you want this to run in the browser? You could just use the real IndexedDB then. And as a quick workaround for anyone targeting the browser, you could import the variables explicitly from |
We're using it in Cypress component testing and Storybook where we don't want to modify the actual IndexedDB, have to reset it between every component, and we figured a memory variant would be (much) quicker. We're using Dexie where we're defining a database globally; https://dexie.org/docs/Tutorial/React#3-create-a-file-dbjs-or-dbts. Passing a custom indexedDB would require some test-only hackery which we'd like to avoid, but this is a possible fallback if all else fails. Either way, this setup does make it harder to reset the database, as we can't just change the indexedDB variable half way through. Since the definition is file-level, it's also persisted between tests. I only get the error when running the auto scripts in either Storybook en Cypress. Maybe that's because it's executed in a .mjs file? I assumed the error was because of an error in the browser, since it refers to I get the same behavior as you when I do these tests in the console, but it also reveals that setting indexedDB like this doesn't work at all. I think using defineProperty should work correctly everywhere. It basically overwrites the property instead of using its setter to change its value (which as you saw doesn't even work in the browser at best, and crashes at worst). My project works using the patch in the original message in combination with |
Exact same issue for me, using react and localforage on gatsby project. I understand author's concern about the change but would be a neat PR (@MartijnHols ). |
same issue here while importing auto into a sveltekit project |
On Chrome, running
auto
, throws the error "Cannot set property indexedDB of # which has only a getter". Changing theauto
script like so fixed the issue for me:Would you be open to a PR?
The text was updated successfully, but these errors were encountered: