Skip to content

Commit

Permalink
Making purdy.
Browse files Browse the repository at this point in the history
  • Loading branch information
blockiosaurus committed Dec 27, 2023
1 parent 08cbd5b commit 2f87f10
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions clients/js/test/engrave.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@ test('it can mint and engrave a NonFungible', async (t) => {
mint: mint.publicKey,
updateAuthority: umi.identity,
engraverProgram: MPL_ENGRAVER_PROGRAM_ID,
}).prepend(setComputeUnitLimit(umi, { units: 1000000 }))
.sendAndConfirm(umi, { send: {skipPreflight: true}});
})
.prepend(setComputeUnitLimit(umi, { units: 1000000 }))
.sendAndConfirm(umi, { send: { skipPreflight: true } });
});

test('it can mint and engrave a ProgrammableNonFungible', async (t) => {
Expand Down Expand Up @@ -85,6 +86,7 @@ test('it can mint and engrave a ProgrammableNonFungible', async (t) => {
mint: mint.publicKey,
updateAuthority: umi.identity,
engraverProgram: MPL_ENGRAVER_PROGRAM_ID,
}).prepend(setComputeUnitLimit(umi, { units: 1000000 }))
.sendAndConfirm(umi, { send: {skipPreflight: true}});
})
.prepend(setComputeUnitLimit(umi, { units: 1000000 }))
.sendAndConfirm(umi, { send: { skipPreflight: true } });
});

0 comments on commit 2f87f10

Please sign in to comment.