[IMP] app: better error message when missing template

This commit is contained in:
Géry Debongnie
2022-02-15 16:33:09 +01:00
committed by Samuel Degueldre
parent 73c339fff1
commit bb9d65e95b
2 changed files with 8 additions and 3 deletions
+1 -1
View File
@@ -204,7 +204,7 @@ describe("basics", () => {
error = e as Error;
}
expect(error!).toBeDefined();
expect(error!.message).toBe('Missing template: "wrongtemplate"');
expect(error!.message).toBe('Missing template: "wrongtemplate" (for component "Test")');
});
test("class component with dynamic text", async () => {