diff options
author | stephan <stephan@noemail.net> | 2024-11-22 16:45:43 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2024-11-22 16:45:43 +0000 |
commit | 7398e279a711a1fea3ca4db08a02e8b421304f7c (patch) | |
tree | c2882bca0cdbbac8db64aa45717b8e3ec0cc6e4c /ext/wasm/tester1.c-pp.js | |
parent | de7e2b178d97363ef8e46901c465ace38f117281 (diff) | |
download | sqlite-7398e279a711a1fea3ca4db08a02e8b421304f7c.tar.gz sqlite-7398e279a711a1fea3ca4db08a02e8b421304f7c.zip |
Remove a flaky JS test which has a result depending on unrepredictable context. That same feature is more reliably tested at a later point in the same script.
FossilOrigin-Name: 3d6ae13805bdba4c73b7443f20073264cdd157299cb911228600e1528a136bb1
Diffstat (limited to 'ext/wasm/tester1.c-pp.js')
-rw-r--r-- | ext/wasm/tester1.c-pp.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ext/wasm/tester1.c-pp.js b/ext/wasm/tester1.c-pp.js index 7ed278020..a21a1c330 100644 --- a/ext/wasm/tester1.c-pp.js +++ b/ext/wasm/tester1.c-pp.js @@ -1248,11 +1248,6 @@ globalThis.sqlite3InitModule = sqlite3InitModule; let st = this.db.prepare( new TextEncoder('utf-8').encode("select 3 as a") ); - if( wasm.compileOptionUsed('OMIT_PROGRESS_CALLBACK') ) { - T.assert( !this.progressHandlerCount ); - }else{ - T.assert( 1===this.progressHandlerCount, "Checking this.progressHandlerCount" ); - } let rc; try { T.assert(wasm.isPtr(st.pointer)) |