describe('Zip Code Test', function() {
it(`Should find a result from the ziplist`, async function() {
const zipCode = '85395';
const zipList = codes[zipCode];
const zipItem = zipList?.find(({ zip }) => zip === zipCode);
expect(zipItem).to.not.be.undefined;
});
});