Skip to content

Commit

Permalink
cypress config: use ES module syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
USA-RedDragon committed Nov 26, 2023
1 parent acd8e4b commit 2cfb537
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/cypress.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* eslint-disable no-undef */
const { defineConfig } = require('cypress');
const process = require('process');
import { defineConfig } from 'cypress';
import process from 'process';

module.exports = defineConfig({
export default defineConfig({
video: process.env.BROWSER !== 'firefox',
reporter: 'cypress-multi-reporters',
reporterOptions: {
Expand Down

0 comments on commit 2cfb537

Please sign in to comment.