@itwin/core-backend 5.4.0-dev.10 → 5.4.0-dev.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2198,6 +2198,9 @@ describe("iModel", () => {
2198
2198
  expect(id2).to.equal(id);
2199
2199
  const element2 = db.elements.getElementProps(id2);
2200
2200
  expect(element2).to.not.equal(element1);
2201
+ // Make sure that the statement caches are not cleared
2202
+ expect(db._sqliteStatementCache.size).to.be.greaterThan(0);
2203
+ expect(db._statementCache.size).to.be.greaterThan(0);
2201
2204
  db.abandonChanges();
2202
2205
  db.close();
2203
2206
  });