Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/js-sdk/tests/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const sandboxTest = base.extend<SandboxFixture>({
sandbox: [
// eslint-disable-next-line no-empty-pattern
async ({}, use) => {
const sandbox = await Sandbox.create(template)
const sandbox = await Sandbox.create(template, { debug: isDebug })
try {
await use(sandbox)
} finally {
Expand Down
4 changes: 2 additions & 2 deletions packages/python-sdk/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def template():

@pytest.fixture()
def sandbox(template, debug):
sandbox = Sandbox(template)
sandbox = Sandbox(template, debug=debug)

try:
yield sandbox
Expand All @@ -38,7 +38,7 @@ def sandbox(template, debug):

@pytest_asyncio.fixture
async def async_sandbox(template, debug):
sandbox = await AsyncSandbox.create(template)
sandbox = await AsyncSandbox.create(template, debug=debug)

try:
yield sandbox
Expand Down