We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a87d5e0 commit 042262eCopy full SHA for 042262e
packages/data-connect/test/unit/Cache.test.ts
@@ -325,7 +325,7 @@ describe('Normalized Cache Tests', () => {
325
// 3. Check that stubs are distinct objects from BDOs
326
const movieBdo = cache.bdoCache.get(Cache.makeBdoCacheKey('Movie', '1'))!;
327
expect(movieStub).to.not.equal(movieBdo);
328
- expect(movieStub.backingData).to.equal(movieBdo);
+ expect({...movieStub}).to.equal({...movieBdo});
329
});
330
331
it('should propagate changes from a nested entity to all parent listeners', () => {
0 commit comments