mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) Adding links to description tooltips
Summary: Column and widget descriptions now support links in text. Test Plan: Updated Reviewers: georgegevoian Reviewed By: georgegevoian Differential Revision: https://phab.getgrist.com/D3981
This commit is contained in:
@@ -4359,9 +4359,7 @@ async function getWorkspaceId(api: UserAPIImpl, name: string) {
|
||||
return workspaces.find((w) => w.name === name)!.id;
|
||||
}
|
||||
|
||||
// TODO: deal with safe port allocation
|
||||
const webhooksTestPort = 34365;
|
||||
|
||||
const webhooksTestPort = Number(process.env.WEBHOOK_TEST_PORT);
|
||||
|
||||
async function setupDataDir(dir: string) {
|
||||
// we'll be serving Hello.grist content for various document ids, so let's make copies of it in
|
||||
|
||||
@@ -51,11 +51,8 @@ function backupEnvironmentVariables() {
|
||||
});
|
||||
}
|
||||
|
||||
/*
|
||||
TODO: this hardcoded port numbers might cause conflicts in parallel tests executions. replace with someone more generic
|
||||
*/
|
||||
const webhooksTestPort = 34365;
|
||||
const webhooksTestProxyPort = 22335;
|
||||
const webhooksTestPort = Number(process.env.WEBHOOK_TEST_PORT);
|
||||
const webhooksTestProxyPort = Number(process.env.WEBHOOK_TEST_PROXY_PORT);
|
||||
|
||||
describe('Webhooks-Proxy', function () {
|
||||
// A testDir of the form grist_test_{USER}_{SERVER_NAME}
|
||||
|
||||
Reference in New Issue
Block a user