it('does not call the listener when the record does not change', () => {
      store.addRecordListener(1, listener);

      actions.update(1, { name: 'eat cookies' });
      expect(listener).not.to.have.been.called();