Skip to content

Commit 7b35702

Browse files
committed
Formatting
1 parent fe8ec00 commit 7b35702

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

test/webdriverio/test/basic_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ suite('Keyboard navigation on Blocks', function () {
253253
await tabNavigateToWorkspace(this.browser);
254254
await this.browser.pause(PAUSE_TIME);
255255
await setCurrentCursorNodeById(this.browser, 'text_print_1');
256-
await this.browser.keys("m");
256+
await this.browser.keys('m');
257257
await this.browser.pause(PAUSE_TIME);
258258

259259
chai.assert.isTrue(await isDragging(this.browser));

test/webdriverio/test/test_setup.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,9 @@ export async function tabNavigateForward(browser: WebdriverIO.Browser) {
362362
*
363363
* @param browser The active WebdriverIO Browser object.
364364
*/
365-
export async function isDragging(browser: WebdriverIO.Browser): Promise<boolean> {
365+
export async function isDragging(
366+
browser: WebdriverIO.Browser,
367+
): Promise<boolean> {
366368
return await browser.execute(() => {
367369
const workspaceSvg = Blockly.getMainWorkspace() as Blockly.WorkspaceSvg;
368370
return workspaceSvg.isDragging();

0 commit comments

Comments
 (0)