describe("properly support svg", () => {
test.skip("add proper namespace to svg", () => {
// qweb.addTemplate(
// "test",
// ``
// );
// expect(renderToString(qweb, "test")).toBe(
// ``
// );
});
test.skip("add proper namespace to g tags", () => {
// this is necessary if one wants to use components in a svg
// qweb.addTemplate(
// "test",
// ` `
// );
// expect(renderToString(qweb, "test")).toBe(
// ` `
// );
});
});