mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
fix(columnDesc): await async function
This commit is contained in:
parent
7abecd4783
commit
4e8e087abf
@ -25,7 +25,7 @@ describe('DescriptionColumn', function() {
|
|||||||
const doc = await mainSession.tempDoc(cleanup, "CardView.grist", { load: true });
|
const doc = await mainSession.tempDoc(cleanup, "CardView.grist", { load: true });
|
||||||
const docId = doc.id;
|
const docId = doc.id;
|
||||||
|
|
||||||
addColumnDescription(api, docId, 'B');
|
await addColumnDescription(api, docId, 'B');
|
||||||
|
|
||||||
// Column description editable in right panel
|
// Column description editable in right panel
|
||||||
await driver.find('.test-right-opener').click();
|
await driver.find('.test-right-opener').click();
|
||||||
@ -54,7 +54,7 @@ describe('DescriptionColumn', function() {
|
|||||||
const doc = await mainSession.tempDoc(cleanup, "CardView.grist", { load: true });
|
const doc = await mainSession.tempDoc(cleanup, "CardView.grist", { load: true });
|
||||||
const docId = doc.id;
|
const docId = doc.id;
|
||||||
|
|
||||||
addColumnDescription(api, docId, 'B');
|
await addColumnDescription(api, docId, 'B');
|
||||||
|
|
||||||
await gu.changeWidget('Card');
|
await gu.changeWidget('Card');
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user