Skip to content

Commit f53a2e2

Browse files
committed
updated tests
1 parent f371b2b commit f53a2e2

File tree

3 files changed

+0
-19
lines changed

3 files changed

+0
-19
lines changed

js/tests/cwd.test.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,6 @@ sandboxTest.skipIf(isDebug)('cwd typescript', async ({ sandbox }) => {
2727
expect(result.text).toEqual('/home/user')
2828
})
2929

30-
sandboxTest.skipIf(isDebug)('cwd deno', async ({ sandbox }) => {
31-
const result = await sandbox.runCode('Deno.cwd()', {
32-
language: 'deno',
33-
})
34-
expect(result.text).toEqual('/home/user')
35-
})
36-
3730
sandboxTest.skipIf(isDebug)('cwd r', async ({ sandbox }) => {
3831
const result = await sandbox.runCode('getwd()', {
3932
language: 'r',

python/tests/async/test_async_cwd.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,6 @@ async def test_cwd_typescript(async_sandbox: AsyncSandbox):
2121
assert result.text == "/home/user"
2222

2323

24-
@pytest.mark.skip_debug()
25-
async def test_cwd_deno(async_sandbox: AsyncSandbox):
26-
result = await async_sandbox.run_code("Deno.cwd()", language="deno")
27-
assert result.text == "/home/user"
28-
29-
3024
@pytest.mark.skip_debug()
3125
async def test_cwd_r(async_sandbox: AsyncSandbox):
3226
result = await async_sandbox.run_code("getwd()", language="r")

python/tests/sync/test_cwd.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,6 @@ def test_cwd_typescript(sandbox: Sandbox):
2121
assert result.text == "/home/user"
2222

2323

24-
@pytest.mark.skip_debug()
25-
def test_cwd_deno(sandbox: Sandbox):
26-
result = sandbox.run_code("Deno.cwd()", language="deno")
27-
assert result.text == "/home/user"
28-
29-
3024
@pytest.mark.skip_debug()
3125
def test_cwd_r(sandbox: Sandbox):
3226
result = sandbox.run_code("getwd()", language="r")

0 commit comments

Comments
 (0)