diff --git a/front/src/styles/ReservePage.css b/front/src/styles/ReservePage.css index 07a6bd6..a7d2af1 100644 --- a/front/src/styles/ReservePage.css +++ b/front/src/styles/ReservePage.css @@ -2,7 +2,7 @@ display: flex; flex-direction: column; gap: 32px; - max-width: 890px; + max-width: 900px; margin: 0 auto; padding: 32px; } diff --git a/front/src/test/ReservePage.test.js b/front/src/test/ReservePage.test.js deleted file mode 100644 index bf7f270..0000000 --- a/front/src/test/ReservePage.test.js +++ /dev/null @@ -1,23 +0,0 @@ -import React from 'react'; -import { render, screen } from '@testing-library/react'; -import ReservePage from '../pages/ReservePage'; -import { BrowserRouter } from 'react-router-dom'; - -jest.mock('axios', () => ({ - get: jest.fn(() => Promise.resolve({ data: { buildings: [] } })), -})); - -beforeEach(() => { - localStorage.setItem('favorites', JSON.stringify(['Dasan Hall'])); -}); - -test('Make sure your favorite building is displayed at the top', async () => { - render( - - - - ); - - const title = await screen.findByText(/Favorite Classrooms/i); - expect(title).toBeInTheDocument(); -}); \ No newline at end of file