chore: increase revision frequency time in e2e [no ci] (#2450)

This commit is contained in:
Karol Sójko
2023-08-24 21:49:31 +02:00
committed by GitHub
parent a88ea67403
commit 6a61efae02
2 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ import { createNoteParams } from './lib/Items.js'
chai.use(chaiAsPromised)
const expect = chai.expect
describe.skip('history manager', () => {
describe('history manager', () => {
const largeCharacterChange = 25
let application, history, email, password

View File

@@ -287,8 +287,8 @@ export async function storagePayloadCount(application) {
* The number of seconds between changes before a server creates a new revision.
* Controlled via docker/syncing-server-js.env
*/
export const ServerRevisionFrequency = 2.1
export const ServerRevisionCreationDelay = 1.5
export const ServerRevisionFrequency = 2.5
export const ServerRevisionCreationDelay = 2.5
export function yesterday() {
return new Date(new Date().setDate(new Date().getDate() - 1))