19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:31:47 +01:00
parent accf5918df
commit 6e65e8c877
688 changed files with 225434 additions and 199401 deletions

View file

@ -0,0 +1,14 @@
import { openFormView, start, startServer } from "@mail/../tests/mail_test_helpers";
import { defineMrpModels } from "@mrp/../tests/mrp_test_helpers";
import { describe, expect, test } from "@odoo/hoot";
describe.current.tags("desktop");
defineMrpModels();
test("ensure the rendering is based on minutes and seconds", async () => {
const pyEnv = await startServer();
const fakeId = pyEnv["res.fake"].create({ duration: 150.5 });
await start();
await openFormView("res.fake", fakeId);
expect(".o_field_mrp_timer").toHaveText("150:30");
});