Skip to content

Commit

Permalink
added failing test rustpython
Browse files Browse the repository at this point in the history
  • Loading branch information
yusungsim committed Feb 13, 2024
1 parent 58e30db commit f8145e3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/online/rustpython/test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { delay } from '../../../dist/tests/test-utils.cjs'

export default async function test(analyser) {
const url = 'https://rustpython.github.io/demo/'
const page = await analyser.start(url, { headless: false })

const runButton = page.locator('#run-btn')
console.log('button found')
await runButton.click()
console.log('clicked')

await delay(10000)

return await analyser.stop()
}
1 change: 1 addition & 0 deletions tests/run-tests.cts
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ async function runOnlineTests(names: string[], options) {
'roslyn', // not working
'rtexpacker', //not working
'rtexviewer', // not working
'rustpython', // not working
]
names = names.filter((n) => !filter.includes(n))
let successfull = 0;
Expand Down

0 comments on commit f8145e3

Please sign in to comment.