mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-06 17:00:30 +08:00
13 lines
250 B
Python
13 lines
250 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def browser_context_args(browser_context_args: dict) -> dict:
|
|
return {
|
|
**browser_context_args,
|
|
"viewport": {
|
|
"width": 1000,
|
|
"height": 3000,
|
|
},
|
|
}
|