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