UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

13 lines (11 loc) 272 B
import { warn } from './logger'; describe('util.logger', () => { beforeEach(() => { spyOn(console, 'warn'); }); it('should be once warn when same content', () => { warn('once'); warn('once'); expect(console.warn).toHaveBeenCalledTimes(1); }); });