Skip to content
This repository was archived by the owner on Jan 17, 2025. It is now read-only.

Commit

Permalink
WIP [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
mkobayashime committed Jan 3, 2023
1 parent f38e2cc commit 331acdd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/methods/ReportTemplateGenerator.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@ describe("ReportTemplateGenerator module", () => {
deadline: new Date(`2021-01-01 00:00:00`),
description: `Show how great the university of Tsukuba is.`,
}
const getReportTemplate = (userTemplate: string) =>
new ReportTemplateGenerator("", userTemplate, reportInfo).template
const getReportTemplate = (userTemplate: string) => {
const foo = new ReportTemplateGenerator("", userTemplate, reportInfo)
.template
console.log(foo)
return foo
}
const getFilename = (userFilename: string) =>
new ReportTemplateGenerator(userFilename, "", reportInfo).filename

Expand Down

0 comments on commit 331acdd

Please sign in to comment.