Skip to content

Commit e912357

Browse files
committed
Fix deprecations
1 parent 4147fc7 commit e912357

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

rollup.config.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
export default {
22
input: 'lib/index.js',
33
output: {
4+
name: 'apollo-cache-persist',
45
file: 'lib/bundle.umd.js',
56
format: 'umd',
7+
sourcemap: true,
8+
exports: 'named',
69
},
7-
name: 'apollo-cache-persist',
8-
exports: 'named',
9-
sourceMap: true,
1010
onwarn,
1111
};
1212

src/__tests__/persistCache.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,6 @@ describe('persistCache', () => {
170170
jest.runTimersToTime(1001);
171171
expect(await storage.getItem('apollo-cache-persist')).toBe(undefined);
172172
});
173-
xit('setting the trigger to background persists in the background');
173+
xit('setting the trigger to background persists in the background', () => {});
174174
});
175175
});

0 commit comments

Comments
 (0)