aboutsummaryrefslogtreecommitdiff
path: root/src/templates.test.ts
diff options
context:
space:
mode:
authorKevin J Hoerr <kjhoerr@protonmail.com>2021-10-07 16:47:35 +0000
committerKevin J Hoerr <kjhoerr@protonmail.com>2021-10-07 16:47:35 +0000
commite3f21afa451f8c8cb5743cd08fe3c3450ff5a75b (patch)
treeb4c426593d468bcf73c9dbfa904d6879191e88eb /src/templates.test.ts
parent54e479f0db78ed3bfc0be94e9d7ecdb8c00ca187 (diff)
downloadao-coverage-e3f21afa451f8c8cb5743cd08fe3c3450ff5a75b.tar.gz
ao-coverage-e3f21afa451f8c8cb5743cd08fe3c3450ff5a75b.tar.bz2
ao-coverage-e3f21afa451f8c8cb5743cd08fe3c3450ff5a75b.zip
Use *.tmpl file extension over *.template
Diffstat (limited to 'src/templates.test.ts')
-rw-r--r--src/templates.test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/templates.test.ts b/src/templates.test.ts
index e434ce4..8fbf7e4 100644
--- a/src/templates.test.ts
+++ b/src/templates.test.ts
@@ -21,7 +21,7 @@ describe("processTemplate", () => {
it("should process the template file with the given context", async () => {
// Arrange
- const template = genTemplate("ex.template");
+ const template = genTemplate("ex.tmpl");
// Act
const result = await processTemplate(template);
@@ -34,7 +34,7 @@ describe("processTemplate", () => {
it("should process the blank file", async () => {
// Arrange
- const template = genTemplate("blank.template");
+ const template = genTemplate("blank.tmpl");
// Act
const result = await processTemplate(template);