UNPKG

react-gtm-module

Version:
10 lines (9 loc) 244 B
import sinon from 'sinon' import warn from '../utils/warn' describe('warn()', function () { it('should append [react-gtm] to warning messages', () => { sinon.stub(console, 'warn') warn('foo') console.warn.toHaveBeenCalled }) })