mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-20 23:17:35 -04:00
With original script was able to select build dir to run against this script always chooses "Release" version
13 lines
422 B
Python
13 lines
422 B
Python
# Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
# For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
import pytest
|
|
from harness import log
|
|
|
|
def test_get_dom(harness):
|
|
body = {"ui": True, "getWindow": True}
|
|
result = harness.endpoint_request("developerMode", "get", body)
|
|
#log.info("data {}".format(result))
|
|
assert result['body']
|
|
assert 'Window' in result['body']['dom']
|