summaryrefslogtreecommitdiff
path: root/addons/mail_bot/static/src/bugfix/bugfix_tests.js
blob: 3aa5456b8f0ca5eacc016e1d405dc8f7041d7875 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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', {

});
});
});

});