Skip to content

Commit

Permalink
Avoid hitting a firefox bug by accident. Did not mean to change cache…
Browse files Browse the repository at this point in the history
…: 'immutable' - was just a way to pin down an issue and it happened to be committed with the repro of 2067
  • Loading branch information
David Fahlander committed Oct 14, 2024
1 parent 609e68b commit ee24276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/tests-live-query.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { deepEqual, isDeepEqual } from './deepEqual';
import { isIE, promisedTest, resetDatabase } from './dexie-unittest-utils';

const db = new Dexie("TestLiveQuery", {
cache: 'disabled' // Using immutable cache in tests because it is most likely to fail if not using properly.
cache: 'immutable' // Using immutable cache in tests because it is most likely to fail if not using properly.
});
db.version(2).stores({
items: "id, name",
Expand Down

0 comments on commit ee24276

Please sign in to comment.