Skip to content

Commit 4e69e64

Browse files
committed
format
1 parent bfccceb commit 4e69e64

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

src/content/docs/develop/Tests/WebDriver/Example/webdriverio.mdx

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,15 @@ export const config = {
113113
// ensure the rust project is built since we expect this binary to exist for the webdriver sessions
114114
onPrepare: () => {
115115
// Remove the extra `--` if you're not using npm!
116-
spawnSync('npm', ['run', 'tauri', 'build', '--', '--debug', '--no-bundle'], {
117-
cwd: path.resolve(__dirname, '..'),
118-
stdio: 'inherit',
119-
shell: true,
120-
});
116+
spawnSync(
117+
'npm',
118+
['run', 'tauri', 'build', '--', '--debug', '--no-bundle'],
119+
{
120+
cwd: path.resolve(__dirname, '..'),
121+
stdio: 'inherit',
122+
shell: true,
123+
}
124+
);
121125
},
122126

123127
// ensure we are running `tauri-driver` before the session starts so that we can proxy the webdriver requests

0 commit comments

Comments
 (0)