Skip to content

Commit

Permalink
style: newline
Browse files Browse the repository at this point in the history
  • Loading branch information
star0202 committed Apr 5, 2023
1 parent 1aa814f commit 8b2d9bc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/meal.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ describe('Meal', () => {
})

const data = await school.getMealOne({ MLSV_YMD: '20230331' })

logger.info(data)

expect(data).toMatchObject<MealInfo>(data)
Expand Down
1 change: 1 addition & 0 deletions tests/schedule.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ describe('Schedule', () => {
})

const data = await school.getScheduleOne({ AY_YMD: '20230301' })

logger.info(data)

expect(data).toMatchObject<ScheduleInfo>(data)
Expand Down
2 changes: 2 additions & 0 deletions tests/school.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ describe('School', () => {
const data = await neis.getSchool({
ATPT_OFCDC_SC_CODE: 'B10',
})

logger.info(data)

expect(data).toMatchObject<School[]>(data)
Expand All @@ -16,6 +17,7 @@ describe('School', () => {
ATPT_OFCDC_SC_CODE: 'B10',
SD_SCHUL_CODE: '7091455',
})

logger.info(data)

expect(data).toMatchObject<School>(data)
Expand Down

0 comments on commit 8b2d9bc

Please sign in to comment.