diff options
Diffstat (limited to 'ext/wasm/batch-runner.js')
-rw-r--r-- | ext/wasm/batch-runner.js | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/ext/wasm/batch-runner.js b/ext/wasm/batch-runner.js index 3762998b6..ad281c2e9 100644 --- a/ext/wasm/batch-runner.js +++ b/ext/wasm/batch-runner.js @@ -604,11 +604,8 @@ }/*run()*/ }/*App*/; - self.sqlite3TestModule.initSqlite3().then(function(theEmccModule){ - self._MODULE = theEmccModule /* this is only to facilitate testing from the console */; - sqlite3 = theEmccModule.sqlite3; - console.log("App",App); - self.App = App; - App.run(theEmccModule.sqlite3); + self.sqlite3TestModule.initSqlite3().then(function(sqlite3){ + self.App = App /* only to facilitate dev console access */; + App.run(sqlite3); }); })(); |