Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion cypress/e2e/events/events.cy.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
describe('Event Page', () => {
it('displays the correct main title', () => {
cy.visit('localhost:5173/events');
cy.visit('localhost:5173/app/events');

cy.contains('my events');
});
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/home/home.cy.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
describe('Home Page', () => {
it('displays the correct main title', () => {
cy.visit('localhost:5173');
cy.visit('localhost:5173/app');

cy.contains('UserId:');
});
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/organizations/organizations.cy.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
describe('Organizations Page', () => {
it('displays the correct main title', () => {
cy.visit('localhost:5173/organizations');
cy.visit('localhost:5173/app/organizations');

cy.contains('my orgs');
});
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/profile/profile.cy.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
describe('Profile Page', () => {
it('displays the correct main title', () => {
cy.visit('localhost:5173/profile');
cy.visit('localhost:5173/app/profile');

cy.get('h1').should('contain', 'Profile');
});
Expand Down
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function App() {
<>
<AuthProvider>
<ThemeProvider>
<BrowserRouter>
<BrowserRouter basename="/app">
<Routes>
<Route element={<AppLayout />}>
<Route path="/profile" element={<Profile />} />
Expand Down