juice-shop/juice-shop

View on GitHub
test/cypress/e2e/tokenSale.spec.ts

Summary

Maintainability
A
0 mins
Test Coverage
describe('/#/tokensale-ico-ea', () => {
  describe('challenge "tokenSale"', () => {
    it('should be possible to access token sale section even when not authenticated', () => {
      cy.visit('/#/tokensale-ico-ea')
      cy.url().should('match', /\/tokensale-ico-ea/)
      cy.expectChallengeSolved({ challenge: 'Blockchain Hype' })
    })
  })
})