I was carrying out an integration test for the conter contract I wrote and I realized it kept failing and this was due to the fuels dev-dependency version in my cargo.toml file that the fuel’s documentation advised I use. I was using
[dev-dependencies]
fuels = { version = “0.62.0”, features = [“fuel-core-lib”] }
tokio = { version = “1.12”, features = [“rt”, “macros”] }
and it kept giving me errors like below
---- test_increment stdout ----
thread ‘test_increment’ panicked at tests/harness.rs:50:49: …
However, when I switched it to an older version such as below it worked fine.
[dev-dependencies]
fuels = { version = “0.54.0”, features = [“fuel-core-lib”] }
tokio = { version = “1.12”, features = [“rt”, “macros”] }
I don’t know if anyone has experienced anything similar to what I faced ?