Files
NLnetLabs-krill/tests/multi_user_master_token.rs
T
23be0b5ef7 Make testbed fully configurable through config section
* 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>
2021-03-22 16:53:41 +01:00

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;
}