mirror of
https://github.com/pyscript/pyscript.git
synced 2026-02-18 04:01:10 -05:00
* Remove duplicate LICENSE. * Remove un-userd pyscript.sw directory and its content. * Remove ReadTheDocs settings (unused). * Remove un-used pyproject.toml * Remove now unused CHANGELOG. Changes now tracked via release notes on GitHub. * Updated / cleaned release page template and associated GH actions. * Update prettierignore to remove un-needed refs. * Move troubleshooting into correct README. * Add reason for the index.html * Rename the "pyscript.core" directory to "core". * Update PR template because CHANGELOG is no longer used. * Codespell configuration in pyproject.toml. * Update pyscript.core -> core in .githubignore * Remove test-results/.last-run.json. This should be ignored by git. * Pin nodejs version. --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
21 lines
687 B
Python
21 lines
687 B
Python
"""
|
|
Tests for the pyscript.config dictionary.
|
|
"""
|
|
|
|
from pyscript import config, document, fetch
|
|
from upytest import is_micropython
|
|
|
|
|
|
async def test_config_reads_expected_settings_correctly():
|
|
"""
|
|
The config dictionary should read expected settings for this test suite.
|
|
|
|
Just grab the raw JSON for the settings and compare it to the config
|
|
dictionary.
|
|
"""
|
|
settings = "/settings_mpy.json" if is_micropython else "/settings_py.json"
|
|
url = document.location.href.rsplit("/", 1)[0] + settings
|
|
raw_config = await fetch(url).json()
|
|
for key, value in raw_config.items():
|
|
assert config[key] == value, f"Expected {key} to be {value}, got {config[key]}"
|