mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-02-20 07:37:26 -05:00
Alpha 0.2.6 (#2232)
* bump 0.2.6 * Double Cypress timeouts when running on CI --------- Co-authored-by: Vítor Vasconcellos <vasconcellos.dev@gmail.com>
This commit is contained in:
BIN
Cargo.lock
generated
BIN
Cargo.lock
generated
Binary file not shown.
@@ -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 <support@spacedrive.com>"]
|
||||
default-run = "sd-desktop"
|
||||
|
||||
@@ -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 : {})
|
||||
});
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user