Skip to content

Test: JupyterLab settings registry/schema is error-free #1225

Open
@coderabbitai

Description

@coderabbitai

Follow-up from PR #1218
(reference comment: #1218 (comment)).

Implement a test that:

  • Fetches /api/settings from a running JupyterLab server.
  • Checks for schema errors, migration issues, or error fields in the response.

Sample code:

import requests

def test_jlab_settings_schema():
    r = requests.get("http://localhost:8888/api/settings")
    assert r.status_code == 200
    data = r.json()
    assert "error" not in data
    # Optionally: check for known schema/migration error keys

Owner: @jiridanek

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    Status

    📋 Backlog

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions