Skip to content

Commit

Permalink
Add fade-in effect on load
Browse files Browse the repository at this point in the history
  • Loading branch information
QubitPi committed Dec 14, 2024
1 parent ea5793b commit 1df9326
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion cypress/e2e/aboutbutton.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ describe('About Button Rendering', () => {
beforeEach(() => {
cy
.visit("http://localhost:3000/")
.wait(2000)
})

it('displays "about" icon on the upper right corner', () => {
Expand Down
3 changes: 1 addition & 2 deletions cypress/e2e/app.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ describe('Home Page Rendering', () => {
beforeEach(() => {
cy
.visit("http://localhost:3000/")
.wait(2000)
})

it('displays flashcard section', () => {
Expand All @@ -29,7 +28,7 @@ describe('Home Page Rendering', () => {

it('displays graph section', () => {
cy
.get('*[class^="graph-browser"]')
.get('*[class^="graphBrowser"]')
.should("exist");
})

Expand Down
1 change: 0 additions & 1 deletion cypress/e2e/flashcards.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ describe('Flashcard Section Rendering', () => {
beforeEach(() => {
cy
.visit("http://localhost:3000/")
.wait(2000)
})

it('always displays the forward button', () => {
Expand Down
1 change: 0 additions & 1 deletion cypress/e2e/navigation.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ describe('Navigation Bar Rendering', () => {
beforeEach(() => {
cy
.visit("http://localhost:3000/")
.wait(2000)
})

it('contains, inside navigation bar, 1 header and 3 languages - Ancient Greek, Latin, and German', () => {
Expand Down

0 comments on commit 1df9326

Please sign in to comment.