mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
[REF] initial prototype of owl 2
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
import { text } from "../../src/blockdom";
|
||||
import { Component, mount, xml } from "../../src/index";
|
||||
import { makeTestFixture, snapshotEverything } from "../helpers";
|
||||
|
||||
snapshotEverything();
|
||||
|
||||
let fixture: HTMLElement;
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = makeTestFixture();
|
||||
});
|
||||
|
||||
describe("t-call-block", () => {
|
||||
test("simple t-call-block with static text", async () => {
|
||||
class Test extends Component {
|
||||
static template = xml`<div><t t-call-block="myBlock()"/></div>`;
|
||||
myBlock() {
|
||||
return text("hello");
|
||||
}
|
||||
}
|
||||
|
||||
await mount(Test, fixture);
|
||||
expect(fixture.innerHTML).toBe("<div>hello</div>");
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user