import { IterateTimesPipe, } from './iterate-times.pipe'; describe('transform', () => { test('Returns an Array of numbers from 1 to the supplied number', () => { const iterateTimePipe = new IterateTimesPipe(); expect(iterateTimePipe.transform(5)).toEqual([1, 2, 3, 4, 5]); }); });