[REM] remove some outdated tests

This commit is contained in:
Géry Debongnie
2021-11-16 16:50:21 +01:00
committed by Aaron Bohy
parent aecc320c29
commit cb107cef7d
3 changed files with 0 additions and 145 deletions
-7
View File
@@ -15,13 +15,6 @@ describe("t-call (template calling)", () => {
expect(context.renderToString("caller")).toBe("<div><span>ok</span></div>");
});
test.skip("t-call, global templates", () => {
// QWeb.registerTemplate("abcd", '<div><t t-call="john"/></div>');
// qweb.addTemplate("john", `<span>desk</span>`);
// const expected = "<div><span>desk</span></div>";
// expect(trim(renderToString(qweb, "abcd"))).toBe(expected);
});
test("basic caller, no parent node", () => {
const context = new TestContext();
context.addTemplate("_basic-callee", `<span>ok</span>`);