()
| 597 | #[test] |
| 598 | #[ignore = "Requires environment configuration and is expensive"] |
| 599 | fn test_login_ok() { |
| 600 | #[tokio::main] |
| 601 | async fn run(context: &mut TestContext) { |
| 602 | let _username = context.do_login(1).await; |
| 603 | } |
| 604 | run(&mut TestContext::new_from_env()); |
| 605 | } |
| 606 | |
| 607 | #[test] |
| 608 | #[ignore = "Requires environment configuration and is expensive"] |