mirror of
https://github.com/bringout/oca-ai.git
synced 2026-04-21 08:42:00 +02:00
12 lines
350 B
Python
12 lines
350 B
Python
# Copyright 2025 Dixmit
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo.tests import common
|
|
|
|
|
|
@common.tagged("post_install", "-at_install")
|
|
class TestFrontend(common.HttpCase):
|
|
def test_javascript(self):
|
|
self.browser_js(
|
|
"/web/tests?module=ai_oca_bridge", "", login="admin", timeout=1800
|
|
)
|