Skip to content

Commit

Permalink
Fix some web changes
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Aug 15, 2024
1 parent e45bdbd commit e367077
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/_static/test-rs.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
<div id="mocha"></div>
<!-- Mocha setup and initiation code -->
<script type="module">
import initSync, { get_problems, run_problem, get_js_answer } from './dist/rust.js';
import init, { get_problems, run_problem, get_js_answer } from './dist/rust.js';
mocha.setup('bdd');
window.onload = function() {
initSync();
window.onload = async function() {
await init();
var runner = mocha.run();
var failedTests = [];

Expand Down

0 comments on commit e367077

Please sign in to comment.