aleeusgr / potential-robot

minimal dApp testing suite
MIT License
3 stars 1 forks source link

Vesting #98

Closed aleeusgr closed 1 year ago

aleeusgr commented 1 year ago
aleeusgr commented 1 year ago
describe("vesting contract", () => {
  // what is let?
  let vestingProgram, initiatorWallet, recipientWallet;
  beforeEach(() => { 
    vestingProgram = new helios.Program( ... ); 
     ...
  })
  it ("tests things while reusing provided `vestingProgram`", async () => {
    ...
  })
})