Skip to content

Commit

Permalink
fix e2e
Browse files Browse the repository at this point in the history
Signed-off-by: r3kt.eth <[email protected]>
  • Loading branch information
r3kt-eth committed Aug 2, 2023
1 parent 169962a commit e904eb5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/e2e/specs/metamask-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ describe('Metamask', () => {
cy.changeMetamaskNetwork('sepolia');
}
});
it(`rejectMetamaskPermisionToApproveAll should reject permission to approve all collectibles upon warning`, () => {
cy.get('#deployCollectiblesButton').click();
it(`rejectMetamaskPermisionToApproveAll should reject permission to approve all NFTs upon warning`, () => {
cy.get('#deployNFTsButton').click();
cy.confirmMetamaskTransaction();
cy.get('#mintButton').click();
cy.confirmMetamaskTransaction();
Expand All @@ -140,7 +140,7 @@ describe('Metamask', () => {
expect(rejected).to.be.true;
});
});
it(`confirmMetamaskPermisionToApproveAll should confirm permission to approve all collectibles`, () => {
it(`confirmMetamaskPermisionToApproveAll should confirm permission to approve all NFTs`, () => {
cy.get('#setApprovalForAllButton').click();
cy.confirmMetamaskPermisionToApproveAll().then(confirmed => {
expect(confirmed).to.be.true;
Expand Down

0 comments on commit e904eb5

Please sign in to comment.