Skip to content
Open
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
9 changes: 9 additions & 0 deletions projects/calculator/cypress/e2e/porc.cy.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
describe('template spec', () => {
it('passes', () => {
cy.visit('http://localhost:3000/')
cy.contains('AC').click()
cy.contains('2').click()
cy.contains('%').click()
cy.get('.component-display').first().should('have.text', '0.02')
})
})
Loading