forked from Mapan/odoo17e
28 lines
777 B
Python
28 lines
777 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
{
|
|
'name': 'Social Tests (Full)',
|
|
'version': '1.0',
|
|
'category': 'Hidden',
|
|
'sequence': 9878,
|
|
'summary': 'Social Tests: tests specific to social with all sub-modules',
|
|
'description': """This module contains tests related to various social features
|
|
and social-related sub modules. It will test interactions between all those modules.""",
|
|
'depends': [
|
|
'social_facebook',
|
|
'social_instagram',
|
|
'social_linkedin',
|
|
'social_push_notifications',
|
|
'social_twitter',
|
|
'social_youtube',
|
|
'social_crm',
|
|
],
|
|
'installable': True,
|
|
'license': 'OEEL-1',
|
|
'assets': {
|
|
'web.qunit_suite_tests': [
|
|
'social_test_full/static/src/js/tests/**/*',
|
|
],
|
|
}
|
|
}
|