From 114c9e66bbf57ef3d9803f5370b072da16789e80 Mon Sep 17 00:00:00 2001 From: Gabriel Porfirio Date: Fri, 9 Aug 2024 15:19:21 -0300 Subject: [PATCH] skipping pin notes onto whiteboard test --- .../playwright/sharednotes/sharednotes.spec.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bigbluebutton-tests/playwright/sharednotes/sharednotes.spec.js b/bigbluebutton-tests/playwright/sharednotes/sharednotes.spec.js index 8ab49b87de..3f395a5d93 100644 --- a/bigbluebutton-tests/playwright/sharednotes/sharednotes.spec.js +++ b/bigbluebutton-tests/playwright/sharednotes/sharednotes.spec.js @@ -1,6 +1,6 @@ const { test } = require('../fixtures'); const { SharedNotes } = require('./sharednotes'); -const { initializePages } = require('../core/helpers'); +const { linkIssue, initializePages } = require('../core/helpers'); const { fullyParallel } = require('../playwright.config'); test.describe('Shared Notes', () => { @@ -39,7 +39,8 @@ test.describe('Shared Notes', () => { await sharedNotes.seeNotesWithoutEditPermission(); }); - test('Pin and unpin notes onto whiteboard', { tag: '@ci' }, async () => { + test('Pin and unpin notes onto whiteboard', { tag: '@flaky' }, async () => { + linkIssue('20892'); await sharedNotes.pinAndUnpinNotesOntoWhiteboard(); }); });