Skip to content

Commit 0ba3eec

Browse files
committed
fix(tests): Remove debugging console.log
1 parent 25ad999 commit 0ba3eec

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/webdriverio/test/test_setup.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,7 @@ export async function testSetup(
131131
* @returns posix path
132132
*/
133133
function posixPath(target: string): string {
134-
const result = target.split(path.sep).join(path.posix.sep);
135-
console.log(result);
136-
return result;
134+
return target.split(path.sep).join(path.posix.sep);
137135
}
138136

139137
// Relative to dist folder for TS build

0 commit comments

Comments
 (0)