We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4614a1c commit 49b8b4fCopy full SHA for 49b8b4f
.github/workflows/actions.yml
@@ -46,6 +46,10 @@ jobs:
46
47
- uses: swatinem/rust-cache@v2
48
49
+ - uses: actions/setup-node@v4
50
+ with:
51
+ node-version: 'latest'
52
+
53
- name: Clippy, rustfmt
54
if: ${{ matrix.platform == 'ubuntu-24.04' }}
55
run: |
telegram-bot/index.ts
@@ -1,7 +1,7 @@
1
import * as fend from 'fend-wasm-nodejs';
2
3
const two = fend.evaluateFendWithTimeout('1+1', 500);
4
-if (two !== '20') {
+if (two !== '2') {
5
throw new Error(`could not execute webassembly: got '${two}' instead of '2'`);
6
}
7
0 commit comments