mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
add action cache to action manager
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import { makeTestStore } from "../helpers";
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// Tests
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
test("does not reload action if already done", async () => {
|
||||
const routes: string[] = [];
|
||||
const store = makeTestStore({ rpc: async route => routes.push(route) });
|
||||
expect(routes).toEqual([]);
|
||||
|
||||
store.doAction(32);
|
||||
|
||||
expect(routes).toEqual(["web/action/load"]);
|
||||
|
||||
store.doAction(32);
|
||||
|
||||
expect(routes).toEqual(["web/action/load"]);
|
||||
});
|
||||
Reference in New Issue
Block a user