import { test } from './test'; import { pickup } from './utils'; test( 'Create pickup', 'it should POST pickup', 'schedulePickup', pickup.post ); test( 'Delete pickup', 'it should DELETE pickup', 'voidPickup', pickup.destroy ); test( 'Get delivery details', 'it should validate the pickup', 'validatePickup', pickup.post );