Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion test/webdriverio/test/block_comment_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
await keyRight(this.browser);
await sendKeyAndWait(this.browser, Key.Enter);
const focusedNodeId = await getCurrentFocusNodeId(this.browser);
chai.assert.equal(focusedNodeId, 'blockly-2s_comment_textarea_');
chai.assert.isDefined(focusedNodeId);
chai.assert.match(focusedNodeId, /blockly\-\w+_comment_textarea_/);

Check failure on line 40 in test/webdriverio/test/block_comment_test.ts

View workflow job for this annotation

GitHub Actions / Eslint check

Unnecessary escape character: \-
});

test('Escape from a focused comment focuses its bubble', async function () {
Expand Down
Loading