Lines Matching refs:store
35 const store = cls.getStore();
36 store.set('data', '');
49 // Accumulate the current data chunk with the store data
51 const store = cls.getStore();
52 assert.notStrictEqual(store, undefined);
53 let chunk = store.get('data');
55 store.set('data', chunk);
58 // Retrieve the store data, and test for homogeneity
60 const store = cls.getStore();
61 assert.notStrictEqual(store, undefined);
62 const data = store.get('data');