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 0c10e84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/cypress.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable no-undef */
const { defineConfig } = require('cypress');
const process = require('process');
import { defineConfig } from 'cypress';
import process from 'process';

module.exports = defineConfig({
video: process.env.BROWSER !== 'firefox',
Expand Down

0 comments on commit 0c10e84

Please sign in to comment.