make autolinked board ff false as default (#22714)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
40da76ddc8
Коммит
bbf78c4ff6
@@ -693,7 +693,7 @@ const defaultServerConfig: AdminConfig = {
|
|||||||
WysiwygEditor: false,
|
WysiwygEditor: false,
|
||||||
PeopleProduct: false,
|
PeopleProduct: false,
|
||||||
ReduceOnBoardingTaskList: false,
|
ReduceOnBoardingTaskList: false,
|
||||||
OnboardingAutoShowLinkedBoard: true,
|
OnboardingAutoShowLinkedBoard: false,
|
||||||
ThreadsEverywhere: false,
|
ThreadsEverywhere: false,
|
||||||
GlobalDrafts: true,
|
GlobalDrafts: true,
|
||||||
OnboardingTourTips: true,
|
OnboardingTourTips: true,
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
// See LICENSE.txt for license information.
|
// See LICENSE.txt for license information.
|
||||||
|
|
||||||
import {expect, test} from '@e2e-support/test_fixture';
|
import {expect, test} from '@e2e-support/test_fixture';
|
||||||
import {duration, isSmallScreen, wait} from '@e2e-support/util';
|
import {isSmallScreen} from '@e2e-support/util';
|
||||||
|
|
||||||
test('Intro to channel as regular user', async ({pw, pages, browserName, viewport}, testInfo) => {
|
test('Intro to channel as regular user', async ({pw, pages, browserName, viewport}, testInfo) => {
|
||||||
// Create and sign in a new user
|
// Create and sign in a new user
|
||||||
@@ -17,10 +17,10 @@ test('Intro to channel as regular user', async ({pw, pages, browserName, viewpor
|
|||||||
await channelsPage.toBeVisible();
|
await channelsPage.toBeVisible();
|
||||||
|
|
||||||
// Wait for Boards' bot image to be loaded
|
// Wait for Boards' bot image to be loaded
|
||||||
await pw.shouldHaveFeatureFlag('OnboardingAutoShowLinkedBoard', true);
|
// await pw.shouldHaveFeatureFlag('OnboardingAutoShowLinkedBoard', true);
|
||||||
const boardsWelcomePost = await channelsPage.getFirstPost();
|
// const boardsWelcomePost = await channelsPage.getFirstPost();
|
||||||
await expect(await boardsWelcomePost.getProfileImage('boards')).toBeVisible();
|
// await expect(await boardsWelcomePost.getProfileImage('boards')).toBeVisible();
|
||||||
await wait(duration.one_sec);
|
// await wait(duration.one_sec);
|
||||||
|
|
||||||
// Wait for Playbooks icon to be loaded in App bar, except in iphone
|
// Wait for Playbooks icon to be loaded in App bar, except in iphone
|
||||||
if (!isSmallScreen(viewport)) {
|
if (!isSmallScreen(viewport)) {
|
||||||
|
|||||||
@@ -104,7 +104,7 @@ func (f *FeatureFlags) SetDefaults() {
|
|||||||
f.ThreadsEverywhere = false
|
f.ThreadsEverywhere = false
|
||||||
f.GlobalDrafts = true
|
f.GlobalDrafts = true
|
||||||
f.WysiwygEditor = false
|
f.WysiwygEditor = false
|
||||||
f.OnboardingAutoShowLinkedBoard = true
|
f.OnboardingAutoShowLinkedBoard = false
|
||||||
f.OnboardingTourTips = true
|
f.OnboardingTourTips = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user