Skip to content

Commit

Permalink
fix(): test code 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiteKiwi committed Mar 5, 2022
1 parent 8038c8d commit 74ea6af
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ describe('parseUnitSoldiers', () => {
it('성공', () => {
const data = readFileSync(join(__dirname, 'test/성공.txt'), 'utf-8');

expect(parseUnitSoldiers({ data } as any)).toEqual({
훈련병Id: '1561180',
});
expect(parseUnitSoldiers({ data } as any)).toEqual([
{
훈련병Id: '1561180',
},
]);
});
});

0 comments on commit 74ea6af

Please sign in to comment.