1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/social_test_full/__manifest__.py
2024-12-10 09:04:09 +07:00

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/**/*',
],
}
}