We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3472650 commit e2a5f70Copy full SHA for e2a5f70
test/e2e/pages/notebooksPositron.ts
@@ -156,9 +156,10 @@ export class PositronNotebooks extends Notebooks {
156
await this.expectCellIndexToBeSelected(cellIndex, { isSelected: true, inEditMode: true });
157
158
if (exitEditMode) {
159
+ await this.code.driver.page.waitForTimeout(500);
160
await this.code.driver.page.keyboard.press('Escape');
- await this.expectCellIndexToBeSelected(cellIndex, { isSelected: true, inEditMode: false });
161
}
162
+ await this.expectCellIndexToBeSelected(cellIndex, { isSelected: true, inEditMode: !exitEditMode });
163
});
164
165
0 commit comments