mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
- Test was not migrated to v9. - It is not still 100% migrated, but it works now. - Add to known issues that it must migrate. - Cosmetic fixes. - Run tests in bots always.
15 lines
363 B
Python
15 lines
363 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from openerp.tests import HttpCase
|
|
|
|
|
|
class TestJS(HttpCase):
|
|
def test_js(self):
|
|
self.phantom_js(
|
|
"/web/tests?module=web_readonly_bypass",
|
|
"",
|
|
login="admin",
|
|
)
|