mirror of
https://github.com/NLnetLabs/krill.git
synced 2026-09-20 16:37:43 +02:00
* Let users configure the AIA to use with TA certificates. Set 'ta_aia' in the config file. (#409) * Use explicit configuration section for testbed, no longer rely on magic env variables. Note: this will all be revised again if/when the Publication server and TA vs CA code is fully separated in future. Co-authored-by: Ximon Eighteen <3304436+ximon18@users.noreply.github.com>
13 lines
271 B
Rust
13 lines
271 B
Rust
#[cfg(feature = "ui-tests")]
|
|
mod ui;
|
|
|
|
#[tokio::test]
|
|
#[cfg(feature = "ui-tests")]
|
|
async fn multi_user_master_token_test() {
|
|
ui::run_krill_ui_test(
|
|
"multi_user_master_token",
|
|
ui::OpenIDConnectMockMode::OIDCProviderWillNotBeStarted,
|
|
)
|
|
.await;
|
|
}
|