mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-20 02:37:41 -05:00
11 lines
177 B
Python
11 lines
177 B
Python
from unittest.mock import Mock
|
|
|
|
import js
|
|
|
|
showWarning = Mock()
|
|
define_custom_element = Mock()
|
|
|
|
|
|
def deepQuerySelector(selector):
|
|
return js.document.querySelector(selector)
|