Skip to content

Commit

Permalink
Merge pull request #12 from etherspot/transactionFund
Browse files Browse the repository at this point in the history
Modified the test suites
  • Loading branch information
Jineshdarjee authored Aug 7, 2023
2 parents 9969edd + 3fe45e6 commit 5091b20
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 26 deletions.
26 changes: 13 additions & 13 deletions test/specs/mainnet/01_TransferringFunds/Arbitrum.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ describe('The SDK, when transfer a token with arbitrum network on the MainNet',
}
});

it('SMOKE: Perform the transfer ERC721 NFT token with valid details on the arbitrum network', async () => {
xit('SMOKE: Perform the transfer ERC721 NFT token with valid details on the arbitrum network', async () => {
// get erc721 Contract Interface
let erc721Interface;
let erc721Data;
Expand Down Expand Up @@ -3594,7 +3594,7 @@ describe('The SDK, when transfer a token with arbitrum network on the MainNet',
}
});

it('REGRESSION: Perform the transfer ERC721 NFT token with incorrect Sender Address while creating the NFT Data on the arbitrum network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT token with incorrect Sender Address while creating the NFT Data on the arbitrum network', async () => {
// get erc721 Contract Interface
let erc721Interface;
try {
Expand Down Expand Up @@ -3623,7 +3623,7 @@ describe('The SDK, when transfer a token with arbitrum network on the MainNet',
}
});

it('REGRESSION: Perform the transfer ERC721 NFT token with invalid Sender Address i.e. missing character while creating the NFT Data on the arbitrum network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT token with invalid Sender Address i.e. missing character while creating the NFT Data on the arbitrum network', async () => {
// get erc721 Contract Interface
let erc721Interface;
try {
Expand Down Expand Up @@ -3652,7 +3652,7 @@ describe('The SDK, when transfer a token with arbitrum network on the MainNet',
}
});

it('REGRESSION: Perform the transfer ERC721 NFT token without Sender Address while creating the NFT Data on the arbitrum network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT token without Sender Address while creating the NFT Data on the arbitrum network', async () => {
// get erc721 Contract Interface
let erc721Interface;
try {
Expand Down Expand Up @@ -3680,7 +3680,7 @@ describe('The SDK, when transfer a token with arbitrum network on the MainNet',
}
});

it('REGRESSION: Perform the transfer ERC721 NFT token with incorrect Recipient Address while creating the NFT Data on the arbitrum network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT token with incorrect Recipient Address while creating the NFT Data on the arbitrum network', async () => {
// get erc721 Contract Interface
let erc721Interface;
try {
Expand Down Expand Up @@ -3709,7 +3709,7 @@ describe('The SDK, when transfer a token with arbitrum network on the MainNet',
}
});

it('REGRESSION: Perform the transfer ERC721 NFT token with invalid Recipient Address i.e. missing character while creating the NFT Data on the arbitrum network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT token with invalid Recipient Address i.e. missing character while creating the NFT Data on the arbitrum network', async () => {
// get erc721 Contract Interface
let erc721Interface;
try {
Expand Down Expand Up @@ -3738,7 +3738,7 @@ describe('The SDK, when transfer a token with arbitrum network on the MainNet',
}
});

it('REGRESSION: Perform the transfer ERC721 NFT token without Recipient Address while creating the NFT Data on the arbitrum network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT token without Recipient Address while creating the NFT Data on the arbitrum network', async () => {
// get erc721 Contract Interface
let erc721Interface;
try {
Expand Down Expand Up @@ -3766,7 +3766,7 @@ describe('The SDK, when transfer a token with arbitrum network on the MainNet',
}
});

it('REGRESSION: Perform the transfer ERC721 NFT token with incorrect tokenId while creating the NFT Data on the arbitrum network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT token with incorrect tokenId while creating the NFT Data on the arbitrum network', async () => {
// get erc721 Contract Interface
let erc721Interface;
try {
Expand Down Expand Up @@ -3795,7 +3795,7 @@ describe('The SDK, when transfer a token with arbitrum network on the MainNet',
}
});

it('REGRESSION: Perform the transfer ERC721 NFT token without tokenId while creating the NFT Data on the arbitrum network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT token without tokenId while creating the NFT Data on the arbitrum network', async () => {
// get erc721 Contract Interface
let erc721Interface;
try {
Expand Down Expand Up @@ -3962,7 +3962,7 @@ describe('The SDK, when transfer a token with arbitrum network on the MainNet',
}
});

it('REGRESSION: Perform the transfer ERC721 NFT Token without adding transaction to the batch while estimate the added transactions to the batch on the arbitrum network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT Token without adding transaction to the batch while estimate the added transactions to the batch on the arbitrum network', async () => {
// get erc721 Contract Interface
let erc721Interface;
try {
Expand Down Expand Up @@ -4015,7 +4015,7 @@ describe('The SDK, when transfer a token with arbitrum network on the MainNet',
}
});

it('REGRESSION: Perform the transfer ERC721 NFT Token with the invalid TxHash i.e. even number while getting the transaction hash on the arbitrum network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT Token with the invalid TxHash i.e. even number while getting the transaction hash on the arbitrum network', async () => {
// get erc721 Contract Interface
let erc721Interface;
let erc721Data;
Expand Down Expand Up @@ -4090,7 +4090,7 @@ describe('The SDK, when transfer a token with arbitrum network on the MainNet',
}
});

it('REGRESSION: Perform the transfer ERC721 NFT Token with the incorrect TxHash while getting the transaction hash on the arbitrum network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT Token with the incorrect TxHash while getting the transaction hash on the arbitrum network', async () => {
// get erc721 Contract Interface
let erc721Interface;
let erc721Data;
Expand Down Expand Up @@ -4165,7 +4165,7 @@ describe('The SDK, when transfer a token with arbitrum network on the MainNet',
}
});

it('REGRESSION: Perform the transfer ERC721 NFT Token with the past TxHash while getting the transaction hash on the arbitrum network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT Token with the past TxHash while getting the transaction hash on the arbitrum network', async () => {
// get erc721 Contract Interface
let erc721Interface;
let erc721Data;
Expand Down
26 changes: 13 additions & 13 deletions test/specs/mainnet/01_TransferringFunds/Matic.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ describe('The SDK, when transfer a token with matic network on the MainNet', ()
}
});

it('SMOKE: Perform the transfer ERC721 NFT token with valid details on the matic network', async () => {
xit('SMOKE: Perform the transfer ERC721 NFT token with valid details on the matic network', async () => {
// get erc721 Contract Interface
let erc721Interface;
let erc721Data;
Expand Down Expand Up @@ -3594,7 +3594,7 @@ describe('The SDK, when transfer a token with matic network on the MainNet', ()
}
});

it('REGRESSION: Perform the transfer ERC721 NFT token with incorrect Sender Address while creating the NFT Data on the matic network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT token with incorrect Sender Address while creating the NFT Data on the matic network', async () => {
// get erc721 Contract Interface
let erc721Interface;
try {
Expand Down Expand Up @@ -3623,7 +3623,7 @@ describe('The SDK, when transfer a token with matic network on the MainNet', ()
}
});

it('REGRESSION: Perform the transfer ERC721 NFT token with invalid Sender Address i.e. missing character while creating the NFT Data on the matic network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT token with invalid Sender Address i.e. missing character while creating the NFT Data on the matic network', async () => {
// get erc721 Contract Interface
let erc721Interface;
try {
Expand Down Expand Up @@ -3652,7 +3652,7 @@ describe('The SDK, when transfer a token with matic network on the MainNet', ()
}
});

it('REGRESSION: Perform the transfer ERC721 NFT token without Sender Address while creating the NFT Data on the matic network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT token without Sender Address while creating the NFT Data on the matic network', async () => {
// get erc721 Contract Interface
let erc721Interface;
try {
Expand Down Expand Up @@ -3680,7 +3680,7 @@ describe('The SDK, when transfer a token with matic network on the MainNet', ()
}
});

it('REGRESSION: Perform the transfer ERC721 NFT token with incorrect Recipient Address while creating the NFT Data on the matic network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT token with incorrect Recipient Address while creating the NFT Data on the matic network', async () => {
// get erc721 Contract Interface
let erc721Interface;
try {
Expand Down Expand Up @@ -3709,7 +3709,7 @@ describe('The SDK, when transfer a token with matic network on the MainNet', ()
}
});

it('REGRESSION: Perform the transfer ERC721 NFT token with invalid Recipient Address i.e. missing character while creating the NFT Data on the matic network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT token with invalid Recipient Address i.e. missing character while creating the NFT Data on the matic network', async () => {
// get erc721 Contract Interface
let erc721Interface;
try {
Expand Down Expand Up @@ -3738,7 +3738,7 @@ describe('The SDK, when transfer a token with matic network on the MainNet', ()
}
});

it('REGRESSION: Perform the transfer ERC721 NFT token without Recipient Address while creating the NFT Data on the matic network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT token without Recipient Address while creating the NFT Data on the matic network', async () => {
// get erc721 Contract Interface
let erc721Interface;
try {
Expand Down Expand Up @@ -3766,7 +3766,7 @@ describe('The SDK, when transfer a token with matic network on the MainNet', ()
}
});

it('REGRESSION: Perform the transfer ERC721 NFT token with incorrect tokenId while creating the NFT Data on the matic network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT token with incorrect tokenId while creating the NFT Data on the matic network', async () => {
// get erc721 Contract Interface
let erc721Interface;
try {
Expand Down Expand Up @@ -3795,7 +3795,7 @@ describe('The SDK, when transfer a token with matic network on the MainNet', ()
}
});

it('REGRESSION: Perform the transfer ERC721 NFT token without tokenId while creating the NFT Data on the matic network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT token without tokenId while creating the NFT Data on the matic network', async () => {
// get erc721 Contract Interface
let erc721Interface;
try {
Expand Down Expand Up @@ -3962,7 +3962,7 @@ describe('The SDK, when transfer a token with matic network on the MainNet', ()
}
});

it('REGRESSION: Perform the transfer ERC721 NFT Token without adding transaction to the batch while estimate the added transactions to the batch on the matic network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT Token without adding transaction to the batch while estimate the added transactions to the batch on the matic network', async () => {
// get erc721 Contract Interface
let erc721Interface;
try {
Expand Down Expand Up @@ -4015,7 +4015,7 @@ describe('The SDK, when transfer a token with matic network on the MainNet', ()
}
});

it('REGRESSION: Perform the transfer ERC721 NFT Token with the invalid TxHash i.e. even number while getting the transaction hash on the matic network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT Token with the invalid TxHash i.e. even number while getting the transaction hash on the matic network', async () => {
// get erc721 Contract Interface
let erc721Interface;
let erc721Data;
Expand Down Expand Up @@ -4090,7 +4090,7 @@ describe('The SDK, when transfer a token with matic network on the MainNet', ()
}
});

it('REGRESSION: Perform the transfer ERC721 NFT Token with the incorrect TxHash while getting the transaction hash on the matic network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT Token with the incorrect TxHash while getting the transaction hash on the matic network', async () => {
// get erc721 Contract Interface
let erc721Interface;
let erc721Data;
Expand Down Expand Up @@ -4165,7 +4165,7 @@ describe('The SDK, when transfer a token with matic network on the MainNet', ()
}
});

it('REGRESSION: Perform the transfer ERC721 NFT Token with the past TxHash while getting the transaction hash on the matic network', async () => {
xit('REGRESSION: Perform the transfer ERC721 NFT Token with the past TxHash while getting the transaction hash on the matic network', async () => {
// get erc721 Contract Interface
let erc721Interface;
let erc721Data;
Expand Down

0 comments on commit 5091b20

Please sign in to comment.