1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-27 20:41:58 +03:00

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
This commit is contained in:
stephan
2024-11-22 16:45:43 +00:00
parent de7e2b178d
commit 7398e279a7
3 changed files with 7 additions and 12 deletions

View File

@ -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))