mirror of
https://github.com/NLnetLabs/krill.git
synced 2026-09-22 17:34:56 +02:00
15 lines
449 B
Rust
15 lines
449 B
Rust
#[cfg(all(feature = "ui-tests", feature = "multi-user"))]
|
|
mod ui;
|
|
|
|
#[tokio::test]
|
|
#[cfg(all(feature = "ui-tests", feature = "multi-user"))]
|
|
async fn multi_user_openid_connect_provider_with_revocation() {
|
|
use crate::ui::{OpenIDConnectMockConfig, OpenIDConnectMockMode::*};
|
|
|
|
ui::run_krill_ui_test(
|
|
"multi_user_openid_connect_provider_with_revocation",
|
|
OpenIDConnectMockConfig::enabled(WithOAuth2Revocation),
|
|
)
|
|
.await
|
|
}
|