I need to change the block_timestamp to test timed voting.
Using VMContext, block_timestamp is changed using:
context.block_timestamp = get_timestamp();
testing_env!(context.clone());
How to do that in near_sdk_sim?
let (root, contract) = deploy_contract();
// Change the block_timestamp
Runtime has block_timestamp(), not sure how to use it.