diff --git a/Cargo.lock b/Cargo.lock index f521ee2cc..17435d97a 100644 Binary files a/Cargo.lock and b/Cargo.lock differ diff --git a/apps/desktop/src-tauri/Cargo.toml b/apps/desktop/src-tauri/Cargo.toml index 7afb98c3b..c5829bf93 100644 --- a/apps/desktop/src-tauri/Cargo.toml +++ b/apps/desktop/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sd-desktop" -version = "0.2.5" +version = "0.2.6" description = "The universal file manager." authors = ["Spacedrive Technology Inc "] default-run = "sd-desktop" diff --git a/apps/web/cypress.config.ts b/apps/web/cypress.config.ts index 6f92aa001..0c246f3fb 100644 --- a/apps/web/cypress.config.ts +++ b/apps/web/cypress.config.ts @@ -1,5 +1,16 @@ import { defineConfig } from 'cypress'; +const ci_specific = { + // Double all the default timeouts + // https://docs.cypress.io/guides/references/configuration#Timeouts + defaultCommandTimeout: 4000 * 2, + execTimeout: 60000 * 2, + taskTimeout: 60000 * 2, + pageLoadTimeout: 60000 * 2, + requestTimeout: 5000 * 2, + responseTimeout: 30000 * 2 +}; + export default defineConfig({ e2e: { baseUrl: 'http://localhost:8002', @@ -7,5 +18,6 @@ export default defineConfig({ // implement node event listeners here } }, - video: true + video: true, + ...(process.env.CI === 'true' ? ci_specific : {}) }); diff --git a/core/Cargo.toml b/core/Cargo.toml index 5752ba7eb..ba45f09b7 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sd-core" -version = "0.2.5" +version = "0.2.6" description = "Virtual distributed filesystem engine that powers Spacedrive." authors = ["Spacedrive Technology Inc."] rust-version = "1.75.0"