describe("Tests", function () {
const MyContract = artifacts.require("./SimpleStorage.sol")
contract("MyContract", accounts => {
it("should set and get the same value", () =>
let value = 88
return MyContract.deployed().then(function(instance){
instance.set(value, {from:accounts[0]})})
.then(() => instance.get()).then((r) => {
assert.equal(value,r.toNumber());
}));
}
)
})