mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
4740f1f933
Summary: A new onboarding page is now shown to all new users visiting the doc menu for the first time. Tutorial cards on the doc menu have been replaced with a new version that tracks completion progress, alongside a new card that opens the orientation video. Test Plan: Browser tests. Reviewers: jarek Reviewed By: jarek Differential Revision: https://phab.getgrist.com/D4296
54 lines
2.1 KiB
TypeScript
54 lines
2.1 KiB
TypeScript
import { assert, driver } from 'mocha-webdriver';
|
|
import * as gu from 'test/nbrowser/gristUtils';
|
|
import { server, setupTestSuite } from 'test/nbrowser/testUtils';
|
|
import { EnvironmentSnapshot } from 'test/server/testUtils';
|
|
|
|
describe('Features', function () {
|
|
this.timeout(20000);
|
|
setupTestSuite({samples: true});
|
|
|
|
let session: gu.Session;
|
|
let oldEnv: EnvironmentSnapshot;
|
|
|
|
before(async function () {
|
|
oldEnv = new EnvironmentSnapshot();
|
|
session = await gu.session().teamSite.login();
|
|
});
|
|
|
|
after(async function () {
|
|
oldEnv.restore();
|
|
await server.restart();
|
|
});
|
|
|
|
it('can be enabled with the GRIST_UI_FEATURES env variable', async function () {
|
|
process.env.GRIST_TEMPLATE_ORG = 'templates';
|
|
process.env.GRIST_UI_FEATURES = 'helpCenter,templates';
|
|
await server.restart();
|
|
await session.loadDocMenu('/');
|
|
assert.isTrue(await driver.find('.test-dm-templates-page').isDisplayed());
|
|
assert.isTrue(await driver.find('.test-left-feedback').isDisplayed());
|
|
assert.isFalse(await driver.find('.test-dm-basic-tutorial').isDisplayed());
|
|
});
|
|
|
|
it('can be disabled with the GRIST_HIDE_UI_ELEMENTS env variable', async function () {
|
|
process.env.GRIST_UI_FEATURES = 'helpCenter,tutorials';
|
|
process.env.GRIST_HIDE_UI_ELEMENTS = 'templates';
|
|
process.env.GRIST_ONBOARDING_TUTORIAL_DOC_ID = 'tutorialDocId';
|
|
await server.restart();
|
|
await session.loadDocMenu('/');
|
|
assert.isTrue(await driver.find('.test-left-feedback').isDisplayed());
|
|
assert.isTrue(await driver.find('.test-dm-basic-tutorial').isDisplayed());
|
|
assert.isFalse(await driver.find('.test-dm-templates-page').isDisplayed());
|
|
});
|
|
|
|
it('that are disabled take precedence over those that are also enabled', async function () {
|
|
process.env.GRIST_UI_FEATURES = 'tutorials,templates';
|
|
process.env.GRIST_HIDE_UI_ELEMENTS = 'helpCenter,templates';
|
|
await server.restart();
|
|
await session.loadDocMenu('/');
|
|
assert.isTrue(await driver.find('.test-dm-basic-tutorial').isDisplayed());
|
|
assert.isFalse(await driver.find('.test-left-feedback').isPresent());
|
|
assert.isFalse(await driver.find('.test-dm-templates-page').isDisplayed());
|
|
});
|
|
});
|