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 front/cypress/e2e/mapInteractions.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ describe("Map interactions", () => {
cy.contains("OpenStreetMap Contributors").should("exist")
})

it.skip("Verifies map layer switching and popup behavior", () => {
it("Verifies map layer switching and popup behavior", () => {
// eslint-disable-line cypress/no-unnecessary-waiting
cy.getBySel("map-legend-title").should("contain", DataTypeToLabel[DataType.PLANTABILITY])
cy.mapOpenPopup()
Expand Down
4 changes: 2 additions & 2 deletions front/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"preview": "vite preview --port 4173",
"test": "vitest tests",
"test:unit": "vitest",
"test:cypress": "start-server-and-test preview http://localhost:4173 'cypress run'",
Expand Down
3 changes: 2 additions & 1 deletion front/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ export default defineConfig({
// vueDevTools(),
],
server: {
port: 3000
port: 3000,
host: "0.0.0.0"
},
resolve: {
alias: {
Expand Down