Skip to content

Commit

Permalink
review-fix:lint実行
Browse files Browse the repository at this point in the history
  • Loading branch information
marumoto-goq committed May 8, 2024
1 parent 383a625 commit 252c247
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/test/utils/convertZipCode.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,10 @@ describe('convertZipCodeの動作をテスト', () => {
});

test('半角のハイフンを削除', () => {
expect(convertZipCode('732-0021')).toBe(
expectedZipCodeExcludingHyphen
);
expect(convertZipCode('732-0021')).toBe(expectedZipCodeExcludingHyphen);
});

test('半角と全角の郵便番号を半角に変換', () => {
expect(convertZipCode('7320021')).toBe(
expectedZipCodeExcludingHyphen
);
expect(convertZipCode('7320021')).toBe(expectedZipCodeExcludingHyphen);
});
});

0 comments on commit 252c247

Please sign in to comment.