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 71ade81 commit bb14137Copy full SHA for bb14137
test/webdriverio/test/basic_test.ts
@@ -124,7 +124,10 @@ suite('Keyboard navigation', function () {
124
await this.browser.keys(Key.ArrowRight);
125
await this.browser.pause(PAUSE_TIME);
126
127
- chai.assert.equal(await getCurrentCursorNodeId(this.browser), 'create_canvas_1');
+ chai.assert.equal(
128
+ await getCurrentCursorNodeId(this.browser),
129
+ 'create_canvas_1',
130
+ );
131
chai.assert.equal(
132
await getCurrentCursorNodeType(this.browser),
133
Blockly.ASTNode.types.FIELD,
0 commit comments