Pretty straight forward question, I'm just trying to get a console log in this es6 function.
const testLinesSelector = state => state.tests.testLines || [];
I've tried:
const testLinesSelector = state => { 
  console.log('INSIDE THE SELECTOR ===> ');
  return {state.tests.testLines || [] }
};
 
    