Skip to content

Commit

Permalink
use dummy values
Browse files Browse the repository at this point in the history
  • Loading branch information
mzanoni committed Nov 10, 2023
1 parent b437cb1 commit da4c296
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
import { expect, test } from '@jest/globals';
import { Integrator } from '../../src';

const { npm_config_API_KEY: API_KEY, npm_config_DATASET_ID: DATASET_ID, npm_config_SERVER_URL: SERVER_URL } = process.env;

const integrator = new Integrator(DATASET_ID!, API_KEY!, { serverUrl: SERVER_URL });
const integrator = new Integrator('dummy value', 'dummy value');

test('Batch size', async() => {
expect(integrator.batchSize).toBe(1_000);
Expand Down

0 comments on commit da4c296

Please sign in to comment.