diff options
Diffstat (limited to 'addons/snailmail/static/src/bugfix/bugfix_tests.js')
| -rw-r--r-- | addons/snailmail/static/src/bugfix/bugfix_tests.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/addons/snailmail/static/src/bugfix/bugfix_tests.js b/addons/snailmail/static/src/bugfix/bugfix_tests.js new file mode 100644 index 00000000..beffb29b --- /dev/null +++ b/addons/snailmail/static/src/bugfix/bugfix_tests.js @@ -0,0 +1,18 @@ +odoo.define('snailmail/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('snailmail', {}, function () { +QUnit.module('bugfix', {}, function () { +QUnit.module('bugfix_tests.js', { + +}); +}); +}); + +}); |
