vitallens 0.0.3 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -300,7 +300,7 @@ const PORT = process.env.PORT || 3000;
300
300
 
301
301
  // Securely store your API key in an environment variable
302
302
  const API_KEY = process.env.VITALLENS_API_KEY;
303
- const VITALLENS_ENDPOINT = 'https://api.rouast.com/vitallens-v2';
303
+ const VITALLENS_ENDPOINT = 'https://api.rouast.com/vitallens-v3/file';
304
304
 
305
305
  app.use(bodyParser.json({ limit: '10mb' }));
306
306
 
@@ -365,6 +365,12 @@ npm run test:browser-integration
365
365
  npm run test:node-integration
366
366
  ```
367
367
 
368
+ Run specific tests:
369
+
370
+ ```bash
371
+ npx jest test/core/VitalLens.browser.test.ts
372
+ ```
373
+
368
374
  ### Linting
369
375
 
370
376
  Lint the code using: