Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Ignore test
  • Loading branch information
pmikolajczyk41 committed Feb 8, 2023
commit 0821d69ad74bed552b3b6f77d56373f5301e390e
11 changes: 11 additions & 0 deletions examples/custom-environment/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,17 @@ mod runtime_call {
type E2EResult<T> = Result<T, Box<dyn std::error::Error>>;

#[ink_e2e::test(environment = crate::EnvironmentWithManyTopics)]
#[ignore = "Requires that the pallet contract is configured with a schedule allowing for \
more event topics. For example:\
```rust
pub Schedule: pallet_contracts::Schedule<Runtime> = pallet_contracts::Schedule::<Runtime> {
limits: pallet_contracts::Limits {
event_topics: 6,
..Default::default()
},
..Default::default()
};
```"]
async fn it_works(mut client: Client<C, E>) -> E2EResult<()> {
// given
let constructor = TopicerRef::new();
Expand Down