**refactor(tests): consolidate and replace outdated environment test scripts**
- Removed obsolete scripts: `test-all-environments.js`, `test-fallback-function.js`, `test-fallback-simple.js`, `test-fix.js`, `test-tensorflow-textencoder.js`, `test-unified-encoding.js`, and `test-worker-utils.js`. - Introduced `scripts/comprehensive-test.js` as a unified testing script covering all environments: Browser, Node.js, and CLI. - Added `examples/cli-wrapper-example.js` to demonstrate a proper CLI implementation with TensorFlow.js initialization. This refactor simplifies the testing structure by consolidating redundant scripts into a single comprehensive script while ensuring robust cross-environment coverage.
This commit is contained in:
parent
fe1f418bf9
commit
19ed3dd081
20 changed files with 1253 additions and 808 deletions
|
|
@ -3,6 +3,10 @@
|
|||
* A vector and graph database using HNSW
|
||||
*/
|
||||
|
||||
// CRITICAL: The TensorFlow.js environment patch is now centralized in setup.ts
|
||||
// We import setup.js below which applies the necessary patches through textEncoding.js
|
||||
// This ensures a consistent patching approach and avoids conflicts
|
||||
|
||||
// Import the setup file for its side-effects.
|
||||
// This MUST be the very first import to ensure patches are applied
|
||||
// before any other module (like TensorFlow.js) is loaded.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue