Skip to content

Instantly share code, notes, and snippets.

View doncesarts's full-sized avatar

doncesarts doncesarts

View GitHub Profile
@Shelvak
Shelvak / test_parallel.js
Last active January 7, 2022 16:59
Run parallel tests with docker
const fs = require('fs')
const spawn = require('child_process').spawn
const CombineCoverage = require('./istanbul-combine').sync
const PWD = process.env.PWD
const MAX_PARALLEL = 3
let spawned = []
let done = []
const main = async () => {