File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ const { test } = require('ava');
33
44const usps = new USPS ( {
55 server : 'http://production.shippingapis.com/ShippingAPI.dll' ,
6- userId : '##'
6+ userId : process . env . USPS_USER_ID
77} ) ;
88
99test . cb ( '#cityStateLookup() should return the city when passed a zipcode' , t => {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ const { test } = require('ava');
33
44const usps = new USPS ( {
55 server : 'http://production.shippingapis.com/ShippingAPI.dll' ,
6- userId : '##'
6+ userId : process . env . USPS_USER_ID
77} ) ;
88
99test . cb ( 'Address verify should validate apartment' , t => {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ const { test } = require('ava');
33
44const usps = new USPS ( {
55 server : 'http://production.shippingapis.com/ShippingAPI.dll' ,
6- userId : '##'
6+ userId : process . env . USPS_USER_ID
77} ) ;
88
99const ZIP = '94607-3785' ;
You can’t perform that action at this time.
0 commit comments