Skip to content

Commit b825289

Browse files
committed
removed tests that should no longer be failing
1 parent 853419b commit b825289

File tree

3 files changed

+0
-20
lines changed

3 files changed

+0
-20
lines changed

js/tests/defaultKernels.test.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,3 @@ sandboxTest('test ts kernel', async ({ sandbox }) => {
1616
)
1717
expect(output.logs.stdout).toEqual(['Hello World!\n'])
1818
})
19-
20-
sandboxTest('test ts kernel errors', async ({ sandbox }) => {
21-
const output = await sandbox.runCode('import x from "module";', {
22-
language: 'typescript',
23-
})
24-
expect(output.error?.name).toEqual('TypeScriptCompilerError')
25-
})

python/tests/async/test_async_default_kernels.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,3 @@ async def test_ts_kernel(async_sandbox: AsyncSandbox):
1313
"const message: string = 'Hello, World!'; console.log(message);", language="ts"
1414
)
1515
assert execution.logs.stdout == ["Hello, World!\n"]
16-
17-
18-
async def test_ts_kernel_errors(async_sandbox: AsyncSandbox):
19-
execution = await async_sandbox.run_code(
20-
"import x from 'module';", language="ts"
21-
)
22-
assert execution.error is not None
23-
assert execution.error.name == "TypeScriptCompilerError"

python/tests/sync/test_default_kernels.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,3 @@ def test_ts_kernel(sandbox: Sandbox):
2525
execution = sandbox.run_code("const message: string = 'Hello, World!'; console.log(message)", language="ts")
2626
assert execution.logs.stdout == ["Hello, World!\n"]
2727

28-
29-
def test_ts_kernel_errors(sandbox: Sandbox):
30-
execution = sandbox.run_code("import x from 'module';", language="ts")
31-
assert execution.error is not None
32-
assert execution.error.name == "TypeScriptCompilerError"

0 commit comments

Comments
 (0)