Skip to content

Commit

Permalink
fix: frontend test
Browse files Browse the repository at this point in the history
  • Loading branch information
tericcabrel committed Jul 13, 2024
1 parent 578db39 commit c5373df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dev": "next dev --port 7500",
"lint": "next lint",
"start": "next start",
"test": "dotenv -e .env.test -- jest"
"test": "dotenv -e .env.test -- jest --logHeapUsage"
},
"dependencies": {
"@apollo/client": "3.10.6",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jest.mock('next/router', () => require('next-router-mock'));

// TODO - to be refactored soon
// eslint-disable-next-line jest/no-disabled-tests
describe.skip('Newsletter Form', () => {
describe('Newsletter Form', () => {
beforeEach(() => {
// IntersectionObserver isn't available in test environment
const mockIntersectionObserver = jest.fn();
Expand Down

0 comments on commit c5373df

Please sign in to comment.