Skip to content

Commit a2a4070

Browse files
committed
chore: bump excalidraw
Signed-off-by: Hoang Pham <hoangmaths96@gmail.com>
1 parent 0370499 commit a2a4070

6 files changed

Lines changed: 18 additions & 7 deletions

File tree

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@nextcloud/capabilities": "^1.2.1",
3030
"@nextcloud/dialogs": "^6.4.1",
3131
"@nextcloud/event-bus": "^3.3.3",
32-
"@nextcloud/excalidraw": "^0.18.0-bdcb957",
32+
"@nextcloud/excalidraw": "0.18.0-6135eb0",
3333
"@nextcloud/files": "^4.0.0",
3434
"@nextcloud/initial-state": "^3.0.0",
3535
"@nextcloud/l10n": "^3.4.1",
@@ -126,4 +126,4 @@
126126
"node": "^24.0.0",
127127
"npm": "^11.3.0"
128128
}
129-
}
129+
}

playwright/e2e/assistant.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ test.beforeEach(async ({ page }) => {
115115
})
116116

117117
test('Assistant Button', async ({ page }) => {
118+
test.setTimeout(90000)
118119
const boardName = `Assistant ${Date.now()}`
119120
await createWhiteboard(page, { name: boardName })
120121
const assistantButton = await ensureAssistantBoardReady(page, boardName)

playwright/e2e/embed.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ test.beforeEach(async ({ page }) => {
1212
})
1313

1414
test('embed whiteboard in another whiteboard', async ({ page }) => {
15+
test.setTimeout(90000)
1516
const firstBoardName = `first whiteboard ${Date.now()}`
1617
await createWhiteboard(page, { name: firstBoardName })
1718

playwright/e2e/version-preview.spec.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@ const versionPropfindBody = `<?xml version="1.0"?>
2424
</d:prop>
2525
</d:propfind>`
2626

27+
const skipWhenVersionContentUnavailable = () => {
28+
test.skip(
29+
process.env.SERVER_VERSION === 'stable29',
30+
'Nextcloud 29 does not expose version content over the versions DAV endpoint',
31+
)
32+
}
33+
2734
const extractVersionIds = (xml: string, userId: string, fileId: number | string): string[] => {
2835
const prefix = `/remote.php/dav/versions/${userId}/versions/${fileId}/`
2936
const hrefRegex = /<[^:>]*:href>([^<]+)<\/[^:>]*:href>/g
@@ -189,6 +196,7 @@ test('version preview banner shows and exits to live board', async ({
189196
page,
190197
user,
191198
}) => {
199+
skipWhenVersionContentUnavailable()
192200
test.setTimeout(120000)
193201
const boardName = `Version preview ${Date.now()}`
194202
const initialText = 'Version one'
@@ -223,6 +231,7 @@ test('restore version replaces current content', async ({
223231
page,
224232
user,
225233
}) => {
234+
skipWhenVersionContentUnavailable()
226235
test.setTimeout(120000)
227236
const boardName = `Version restore ${Date.now()}`
228237
const initialText = 'Restore one'

tests/integration/multinode-redis.spec.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const Config = ConfigModule
6767

6868
vi.setConfig({ testTimeout: 30000 })
6969

70-
const waitFor = (socket, event, timeoutMs = 5000) => {
70+
const waitFor = (socket, event, timeoutMs = 10000) => {
7171
return new Promise((resolve, reject) => {
7272
const timer = setTimeout(() => {
7373
const lastError = event === 'connect' && socket?.lastConnectError

0 commit comments

Comments
 (0)