From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/mail_bot/static/src/bugfix/bugfix_tests.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 addons/mail_bot/static/src/bugfix/bugfix_tests.js (limited to 'addons/mail_bot/static/src/bugfix/bugfix_tests.js') diff --git a/addons/mail_bot/static/src/bugfix/bugfix_tests.js b/addons/mail_bot/static/src/bugfix/bugfix_tests.js new file mode 100644 index 00000000..3aa5456b --- /dev/null +++ b/addons/mail_bot/static/src/bugfix/bugfix_tests.js @@ -0,0 +1,18 @@ +odoo.define('mail_bot/static/src/bugfix/bugfix_tests.js', function (require) { +'use strict'; + +/** + * This file allows introducing new QUnit test modules without contaminating + * other test files. This is useful when bug fixing requires adding new + * components for instance in stable versions of Odoo. Any test that is defined + * in this file should be isolated in its own file in master. + */ +QUnit.module('mail_bot', {}, function () { +QUnit.module('bugfix', {}, function () { +QUnit.module('bugfix_tests.js', { + +}); +}); +}); + +}); -- cgit v1.2.3