Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update tests
  • Loading branch information
nventuro committed Mar 26, 2020
commit 5f15521458e7d93f2847da505249931f3f6d55fe
4 changes: 3 additions & 1 deletion test/GSN/ERC721GSNRecipientMock.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@ const ERC721GSNRecipientMock = contract.fromArtifact('ERC721GSNRecipientMock');
describe('ERC721GSNRecipient (integration)', function () {
const [ signer, sender ] = accounts;

const name = 'Non Fungible Token';
const symbol = 'NFT';
const tokenId = '42';

beforeEach(async function () {
this.token = await ERC721GSNRecipientMock.new(signer);
this.token = await ERC721GSNRecipientMock.new(name, symbol, signer);
});

async function testMintToken (token, from, tokenId, options = {}) {
Expand Down
Loading