Skip to content

Commit 86d280e

Browse files
committed
Default playwright-log output to working dir if no robot execution context
1 parent 8ae1b07 commit 86d280e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Browser/playwright.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def outputdir(self):
2626
if EXECUTION_CONTEXTS.current:
2727
return BuiltIn().get_variable_value("${OUTPUTDIR}")
2828
else:
29-
return "utest/output"
29+
return "."
3030

3131
@functools.cached_property
3232
def _playwright_process(self) -> Popen:

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ utest-watch:
3434
ptw --ignore ./node_modules --ignore ./.venv
3535

3636
utest:
37-
mkdir -p utest/output
3837
pytest utest
3938

4039
clean-atest:

0 commit comments

Comments
 (0)