mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) Disable tips during tutorials
Summary: Behavioral tips shouldn't be shown during tutorials. Test Plan: Browser test. Reviewers: jarek Reviewed By: jarek Differential Revision: https://phab.getgrist.com/D3842
This commit is contained in:
@@ -53,7 +53,7 @@ describe('DocTutorial', function () {
|
||||
let forkUrl: string;
|
||||
|
||||
before(async () => {
|
||||
session = await gu.session().teamSite.user('user1').login();
|
||||
session = await gu.session().teamSite.user('user1').login({showTips: true});
|
||||
});
|
||||
|
||||
afterEach(() => gu.checkForErrors());
|
||||
@@ -124,6 +124,13 @@ describe('DocTutorial', function () {
|
||||
/GristDocTutorial/).isPresent());
|
||||
});
|
||||
|
||||
it('does not show behavioral tips', async function() {
|
||||
await gu.openPage('Page 1');
|
||||
await gu.openAddWidgetToPage();
|
||||
assert.equal(await driver.find('.test-behavioral-prompt').isPresent(), false);
|
||||
await gu.sendKeys(Key.ESCAPE);
|
||||
});
|
||||
|
||||
it('only allows users access to their own forks', async function() {
|
||||
const otherSession = await gu.session().teamSite.user('user2').login();
|
||||
await driver.navigate().to(forkUrl);
|
||||
|
||||
Reference in New Issue
Block a user