Skip to content

Commit

Permalink
Upd index
Browse files Browse the repository at this point in the history
  • Loading branch information
joente committed Jan 9, 2025
1 parent b0eacf3 commit 9ffa84e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions itest/ws/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
const thingsdb = new ThingsDB('ws://localhost:9780');
thingsdb.connect().then(() => {
thingsdb.auth().then(() => {
thingsdb.query('@thingsdb', 'n=90000; range(n).map(|i| `this is item number {i}`);').then(response => {
thingsdb.query('@thingsdb', 'n=100000; range(n).map(|i| `this is item number {i}`);').then(response => {
console.log('Query done!');
console.log(response.length); // will be "Hello World!"
console.log(response.length); // will be 100000
});
});
});
Expand Down

0 comments on commit 9ffa84e

Please sign in to comment.