Merge pull request #20893 from gabriellpr/skip-pin-notes

test: Skip pin notes onto whiteboard to be updated
This commit is contained in:
Ramón Souza 2024-08-09 16:02:08 -03:00 committed by GitHub
commit 7896b37f46
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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();
});
});