You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given --port 5432 --host localhost it should return { _: [], port: 5432, host: 'localhost' },
given --port 5432 --host it should return something like { _: [], port: 5432, host: true },
and given --port 5432 it should return { _: [], port: 5432 },
The text was updated successfully, but these errors were encountered:
Is there a way to have optional flag values? Something like the following:
Given
--port 5432 --host localhost
it should return{ _: [], port: 5432, host: 'localhost' }
,given
--port 5432 --host
it should return something like{ _: [], port: 5432, host: true }
,and given
--port 5432
it should return{ _: [], port: 5432 }
,The text was updated successfully, but these errors were encountered: