Skip to content

Commit f371b2b

Browse files
committed
fmt
1 parent bd11a98 commit f371b2b

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

js/tests/cwd.test.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,8 @@ sandboxTest.skipIf(isDebug)('cwd r', async ({ sandbox }) => {
4242
})
4343

4444
sandboxTest.skipIf(isDebug)('cwd java', async ({ sandbox }) => {
45-
const result = await sandbox.runCode(
46-
'System.getProperty("user.dir")',
47-
{ language: 'java' }
48-
)
45+
const result = await sandbox.runCode('System.getProperty("user.dir")', {
46+
language: 'java',
47+
})
4948
expect(result.results[0]?.text.trim()).toEqual('/home/user')
5049
})

0 commit comments

Comments
 (0)