Upgrade Ava to v4

This commit is contained in:
Henry Mercer 2022-02-01 18:01:11 +00:00
parent 9a40cc5274
commit ce89f1b611
1153 changed files with 27264 additions and 95308 deletions

6
node_modules/ava/lib/worker/utils.cjs generated vendored Normal file
View file

@ -0,0 +1,6 @@
'use strict';
const process = require('process');
const {isMainThread} = require('worker_threads');
exports.isRunningInThread = isMainThread === false;
exports.isRunningInChildProcess = typeof process.send === 'function';