chore: vault tests refactors and lint (#2374)
This commit is contained in:
@@ -528,8 +528,7 @@ describe('online syncing', function () {
|
||||
await this.application.sync.sync(syncOptions)
|
||||
})
|
||||
|
||||
/** Temporarily skipping due to long run time */
|
||||
it.skip('should handle uploading with sync pagination', async function () {
|
||||
it('should handle uploading with sync pagination', async function () {
|
||||
const largeItemCount = SyncUpDownLimit + 10
|
||||
for (let i = 0; i < largeItemCount; i++) {
|
||||
const note = await Factory.createMappedNote(this.application)
|
||||
@@ -541,10 +540,9 @@ describe('online syncing', function () {
|
||||
await this.application.sync.sync(syncOptions)
|
||||
const rawPayloads = await this.application.storage.getAllRawPayloads()
|
||||
expect(rawPayloads.length).to.equal(this.expectedItemCount)
|
||||
}).timeout(15000)
|
||||
}).timeout(Factory.TwentySecondTimeout)
|
||||
|
||||
/** Temporarily skipping due to long run time */
|
||||
it.skip('should handle downloading with sync pagination', async function () {
|
||||
it('should handle downloading with sync pagination', async function () {
|
||||
const largeItemCount = SyncUpDownLimit + 10
|
||||
for (let i = 0; i < largeItemCount; i++) {
|
||||
const note = await Factory.createMappedNote(this.application)
|
||||
|
||||
Reference in New Issue
Block a user