Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
hop-dev committed Nov 7, 2022
1 parent 722346b commit e9a6136
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -20,7 +20,7 @@ const KIBANA_USERNAME = 'elastic';
const KIBANA_PASSWORD = 'changeme';
const KIBANA_VERSION = kibanaPackageJson.version;

const { base = '', help, prerelease = false, batchSize = 1 } = yargs(process.argv).argv;
const { base = '', prerelease = false, batchSize = 1 } = yargs(process.argv).argv;

const logger = new ToolingLog({
level: 'info',
Expand Down Expand Up @@ -100,7 +100,7 @@ async function performTest({ name, version }: { name: string; version: string })
export async function run() {
const allPackages = await getAllPackages();

const batches = chunk(allPackages, batchSize);
const batches = chunk(allPackages, batchSize as number);
let allResults: Result[] = [];

const start = Date.now();
Expand Down

0 comments on commit e9a6136

Please sign in to comment.