Skip to content

Commit

Permalink
Attempts to fix test errors that are not reproduced locally and fix t…
Browse files Browse the repository at this point in the history
…est site
  • Loading branch information
gcardonag committed Jan 20, 2025
1 parent 507859d commit bcf9c28
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions cypress/e2e/desktop/crowdsourcing.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,9 @@ describe('crowdsourcing form', () => {
force: true
});
cy.get('input[id="address"]').type(
'City Hall Room 708, Philadelphia, PA 19107, USA'
);
'City Hall Room 708, Philadelphia, PA 19107, USA', {
force: true
});
cy.get('input[name="website"]').type('cypress.test');
cy.get('textarea[name="description"]').type(
'Cypress Test Food Description'
Expand Down
3 changes: 2 additions & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ import svgr from 'vite-plugin-svgr';
export default defineConfig(() => ({
build: {
outDir: 'build',
target: 'es2022'
target: 'es2022',
base: './' // This is set to allow for deployments on dynamic subpaths (i.e. - test.phlask.me)
},
plugins: [
react(),
Expand Down

0 comments on commit bcf9c28

Please sign in to comment.