Merge branch 'asch/fix-tests'

This commit is contained in:
Andras Schmelczer 2025-12-06 10:53:20 +00:00
commit bfe3e9aeeb
2 changed files with 3 additions and 10 deletions

View file

@ -6,14 +6,13 @@ on:
pull_request:
branches: ["main"]
schedule:
- cron: '0 * * * *'
- cron: '*/30 * * * *'
concurrency:
group: e2e-tests
cancel-in-progress: false
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:

View file

@ -91,11 +91,7 @@ export class SyncService {
);
}
this.logger.debug(
`Created document ${JSON.stringify(result)} with id ${
result.documentId
}`
);
this.logger.debug(`Created document ${JSON.stringify(result)}`);
return result;
});
@ -274,9 +270,7 @@ export class SyncService {
);
}
this.logger.debug(
`Get document ${result.relativePath} with id ${result.documentId}`
);
this.logger.debug(`Got document ${JSON.stringify(result)}`);
return result;
});