(expression: string, baseDate: Date, timezone?: string)
| 3 | import { TimeMatcher } from './time-matcher'; |
| 4 | |
| 5 | function createWalker(expression: string, baseDate: Date, timezone?: string) { |
| 6 | const tm = new TimeMatcher(expression, timezone); |
| 7 | return new MatcherWalker(tm, baseDate, timezone); |
| 8 | } |
| 9 | |
| 10 | describe('matcher-walker', function(){ |
| 11 | it('get next second', function(){ |
no outgoing calls
no test coverage detected