fix: export BotUIInstance from lib.rs
This commit is contained in:
parent
af41ecbdb0
commit
35a01c8c61
1 changed files with 6 additions and 2 deletions
|
|
@ -7,13 +7,17 @@ mod ports;
|
|||
pub mod services;
|
||||
pub mod web;
|
||||
|
||||
pub use harness::{BotServerInstance, Insertable, TestConfig, TestContext, TestHarness};
|
||||
pub use harness::{
|
||||
BotServerInstance, BotUIInstance, Insertable, TestConfig, TestContext, TestHarness,
|
||||
};
|
||||
pub use ports::PortAllocator;
|
||||
|
||||
pub mod prelude {
|
||||
pub use crate::bot::*;
|
||||
pub use crate::fixtures::*;
|
||||
pub use crate::harness::{BotServerInstance, Insertable, TestConfig, TestContext, TestHarness};
|
||||
pub use crate::harness::{
|
||||
BotServerInstance, BotUIInstance, Insertable, TestConfig, TestContext, TestHarness,
|
||||
};
|
||||
pub use crate::mocks::*;
|
||||
pub use crate::services::*;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue