Skip to content

Commit

Permalink
tests(rpl-crawler): fix missing stub in test
Browse files Browse the repository at this point in the history
  • Loading branch information
jpedroh committed May 20, 2021
1 parent 5efc960 commit 3b5d654
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import makeFlightDecoder from '../../src/flight-decoder/flight-decoder'
import { FlightRules, WakeTurbulence, Weekdays } from '@mach/common'
import { v4 } from 'uuid'

describe('flight-decoder', () => {
const flightDecoder = makeFlightDecoder()
const flightDecoder = makeFlightDecoder({ uuid: _ => v4() })

test('Given flight with begin and end date', () => {
const line =
Expand Down

0 comments on commit 3b5d654

Please sign in to comment.