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 6c0f92b commit 2fd180cCopy full SHA for 2fd180c
test/webdriverio/test/basic_test.ts
@@ -127,7 +127,10 @@ suite('Keyboard navigation', function () {
127
await this.browser.keys(Key.ArrowRight);
128
await this.browser.pause(PAUSE_TIME);
129
130
- chai.assert.equal(await getCurrentCursorNodeId(this.browser), 'create_canvas_1');
+ chai.assert.equal(
131
+ await getCurrentCursorNodeId(this.browser),
132
+ 'create_canvas_1',
133
+ );
134
chai.assert.equal(
135
await getCurrentCursorNodeType(this.browser),
136
Blockly.ASTNode.types.FIELD,
0 commit comments