aboutsummaryrefslogtreecommitdiff
path: root/ext/wasm/SQLTester/SQLTester.run.mjs
diff options
context:
space:
mode:
authorstephan <stephan@noemail.net>2023-08-29 11:22:45 +0000
committerstephan <stephan@noemail.net>2023-08-29 11:22:45 +0000
commit524ddc940d47184bd83771781a6dbd472ccc6365 (patch)
treeb2c8861eece5e3a09b7618e5312eb696ed70badb /ext/wasm/SQLTester/SQLTester.run.mjs
parentd10ed826eb0c8c8d0cbdf66a1e633e16796dd90e (diff)
downloadsqlite-524ddc940d47184bd83771781a6dbd472ccc6365.tar.gz
sqlite-524ddc940d47184bd83771781a6dbd472ccc6365.zip
Init bits of a port of Java's SQLTester to JS. Far from complete.
FossilOrigin-Name: 60eec5ceda80c64870713df8e9aeabeef933c007f2010792225a07d5ef36baef
Diffstat (limited to 'ext/wasm/SQLTester/SQLTester.run.mjs')
-rw-r--r--ext/wasm/SQLTester/SQLTester.run.mjs8
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/wasm/SQLTester/SQLTester.run.mjs b/ext/wasm/SQLTester/SQLTester.run.mjs
new file mode 100644
index 000000000..0a0f8903b
--- /dev/null
+++ b/ext/wasm/SQLTester/SQLTester.run.mjs
@@ -0,0 +1,8 @@
+import {default as ns} from './SQLTester.mjs';
+
+const log = (...args)=>{
+ console.log('SQLTester.run:',...args);
+};
+
+
+log("SQLTester is ostensibly ready.");