Skip to content
Open
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
6 changes: 3 additions & 3 deletions cypress.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { defineConfig } = require("cypress");
import { defineConfig } from "cypress";

module.exports = defineConfig({
export default defineConfig({
component: {
specPattern: "src/**/*.cy.{js,jsx,ts,tsx}",
viewportHeight: 660,
Expand All @@ -10,4 +10,4 @@ module.exports = defineConfig({
bundler: "vite",
},
},
});
});
2 changes: 1 addition & 1 deletion e2e/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM cypress/included:12.5.1
FROM cypress/included:14.5.4
WORKDIR /e2e
COPY . ./
RUN npm ci --silent
Expand Down
2 changes: 1 addition & 1 deletion e2e/cypress.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { defineConfig } from "cypress";
import { seedDatabase } from './db.js';
import { seedDatabase } from './db';

export default defineConfig({
e2e: {
Expand Down
Loading