From f78ae08550284e0f7a0a29bb6d33a2f42562ba7a Mon Sep 17 00:00:00 2001 From: alexm Date: Thu, 27 Jun 2024 13:39:27 +0200 Subject: [PATCH] fix: cypress.config to mjs --- cypress.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cypress.config.js b/cypress.config.js index e2046d6c4..4d383b5ff 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -1,6 +1,6 @@ -const { defineConfig } = require('cypress'); +import { defineConfig } from 'cypress'; -module.exports = defineConfig({ +export default defineConfig({ e2e: { baseUrl: 'http://localhost:9000/', experimentalStudio: true,