← Personal Portfolio (old Angular version, unfinished)
source/cypress/e2e/basic.cy.ts
/*
describe('empty spec', () => {
  beforeEach(() => {
    cy.visit('/')
  })

  it('displays the resources text', () => {
    cy.get('h2')
    .contains('This is a bare-bones Angular project that has everything you need to quickly deploy it to Netlify');
  })
  it('renders the image', () => {
    cy.get('img')
    .should('be.visible')
    .and(($img) => {
      expect($img[0].naturalWidth).to.be.greaterThan(0);
    })
  })
})
*/