Odoo18-Base/addons/web/static/tests/legacy/helpers/test_utils_graph.js
2025-03-10 11:12:23 +07:00

29 lines
510 B
JavaScript

odoo.define('web.test_utils_graph', function () {
"use strict";
/**
* Graph Test Utils
*
* This module defines various utility functions to help test graph views.
*
* Note that all methods defined in this module are exported in the main
* testUtils file.
*/
/**
* Reloads a graph view.
*
* @param {GraphController} graph
* @param {[Object]} params given to the controller reload method
*/
function reload(graph, params) {
return graph.reload(params);
}
return {
reload: reload,
};
});