Skip to content

Commit

Permalink
feat(network-params-test): added initnp check
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
  • Loading branch information
aleeusgr committed May 28, 2023
1 parent 55cd811 commit dfe7de3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/helios-networkParams-doc.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,17 @@ describe("run a transaction on newly initialized params", async () => {

const alice = network.createWallet(BigInt(20000000));
network.createUtxo(alice, BigInt(5000000));
const bob = network.createWallet(BigInt(10000000));
network.tick(BigInt(10));

context.alice = alice;
context.bob = bob;
context.network = network;

})

it ("checks methods", async ({alice}) => {
it ("checks methods", async ({alice, network}) => {
// https://www.hyperion-bt.org/helios-book/api/reference/address.html
expect(alice.address.toBech32()).toBe('addr_test1vz2a83z0d5gceyghfrjqpaqu2f98evk8q6swje2c5ddqmaca2vhfl')
expect(network.initNetworkParams()).toBe();
})
it.skip("checks Properties", async ({validatorHash}) => {
//https://www.hyperion-bt.org/helios-book/api/reference/validatorhash.html
Expand Down

0 comments on commit dfe7de3

Please sign in to comment.